jQuery文件下载插件

我从这个站点导入了这个插件的js文件,如下所示然后

 $.fileDownload('mypath'); 

Firebug向我显示此错误: TypeError: $.fileDownload is not a function

chrome显示:未捕获TypeError: Object function (a,b){return new d.fn.init(a,b,g)} has no method 'fileDownload'

这是整个代码

           $("#download").live("click",function(){ $.fileDownload('C:\\Users\\free\\Desktop\\myworkspace\\gestionRH\\WebRoot\\fiches\\note.doc'); });   

对于那些将面临同样问题的人来说问题是由于这个:路径不正确我必须从服务器下载所以路径是

  $.fileDownload('http://localhost:8080/path/to/file'); 

不是$.fileDownload('C:\\Users\path\to\file');