views:

84

answers:

3

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,

http://www.jqueryplugins.com/

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
+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
A single good continuously updated resource is better than a sea of links with duplicated (and possibly old) info.
Tony_Henrich
@Tony_Henrich True .. this should be a comment address to the question owner.
Elzo Valugi