Hi,
Sorry for this stupid question but I cant find the download link from this plugin: http://plugins.jquery.com/project/jgfeed
Can somebody help me?
Thanks in advance!
Peter
Hi,
Sorry for this stupid question but I cant find the download link from this plugin: http://plugins.jquery.com/project/jgfeed
Can somebody help me?
Thanks in advance!
Peter
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.
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);