问题
I can't find the download link from this plugin: http://plugins.jquery.com/project/jgfeed
Can somebody help me?
回答1:
I had to pull up the google cache of the page to find it, here's a link:
http://plugins.jquery.com/files/jGFeed.zip
You're not stupid for asking, someone really needs to address this and fast, a plugins site you can't download from is just about completely useless.
If anyone else needs other plugins for now, I recommend finding the page, then gooling cache:urlOfPluginPage
to get the cache version in the search results...not sure how long this will work as the caches expire, but it's better than nothing at the moment.
回答2:
Well, as an alternative, you can grab the file from somewhere else. Like, say here: http://bobcravens.com/demos/RssDemo/index.html
It's only .68kb, so I suppose you guys won't mind if I just post the whole thing here:
/*
* jGFeed 1.0 - Google Feed API abstraction plugin for jQuery
*
* Copyright (c) 2009 jQuery HowTo
*
* Licensed under the GPL license:
* http://www.gnu.org/licenses/gpl.html
*
* URL:
* http://jquery-howto.blogspot.com
*
* Author URL:
* http://me.boo.uz
*
*/
(function($){$.extend({jGFeed:function(url,fnk,num,key){if(url==null){return false;}var gurl="http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q="+url;if(num!=null){gurl+="&num="+num;}if(key!=null){gurl+="&key="+key;}$.getJSON(gurl,function(data){if(typeof fnk=="function"){fnk.call(this,data.responseData.feed);}else{return false;}});}});})(jQuery);
来源:https://stackoverflow.com/questions/3700022/jquery-plugin-cant-find-download-link