jQuery plugin - Can't find download link

谁说我不能喝 提交于 2020-01-01 09:34:09

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!