Beside the official JQuery web site, what are some of the best online directories (listings) for JQuery plugins? There are some plugins I never knew existed so I wanted some resources, hopefully with RSS feeds, which notify me of new cool JQuery plugins.
+3
A:
First,
then,
http://www.google.com/search?q=jQuery+plugin
Using Google/Yahoo! before posting is always handy, however I also want more rep :p.
Time Machine
2009-07-24 18:22:50
+1
A:
Just search Google for the result of this js:
var n = [20, 30, 40];
var title = ['useful', 'interesting', 'excellent' ];
var results = [];
var i= 0;
$.each( n, function(x, y){
$.each(title, function(t,v){
results[i]= y + " " + v + " jQuery plugins";
i++;
});
});
console.log(results);
You'll find lots of interesting stuff.
Elzo Valugi
2009-07-24 19:00:17
A single good continuously updated resource is better than a sea of links with duplicated (and possibly old) info.
Tony_Henrich
2009-07-24 20:05:26
@Tony_Henrich True .. this should be a comment address to the question owner.
Elzo Valugi
2009-07-24 21:09:27