vote up 38 vote down star
100

Hi,

I'd like to know what are the most useful JQuery plugins. I'm particularly interested in those which are likely to be useful in general UI development, such as Tablesorter, rather than those which serve uncommon needs.

If you could provide a very brief description of the plugin's purpose, that would be really helpful.

Thanks, Don

flag

38% accept rate
1  
Lot of people tend to combine jquery with good ui libraries like YUI or dojo . This makes it easy to skin the app and gives a consistent look across the board, which could be quite diffcult to achieve with hodge-podge of jquery plugins for UI . My 2C :) – Surya May 26 at 12:44
If you are using dojo or YUI, then you might aswell not use jQuery because both includes similar javascript library like jQuery. – jpartogi Jul 22 at 10:49

16 Answers

vote up 24 vote down

My list:

  • Autocomplete
    • Input field to enable users quickly finding and selecting some value, leveraging searching and filtering.
  • JSON
    • JSON plugin retrieving retrieving and manipulating json data.
  • Cookie
    • Simple & lightweight utility plugin for reading, writing and deleting cookies.
  • Vaildation
    • For validating form input data.
  • UI
    • Full-featured themable and ready-to-use widgets and more...
  • Interface
    • Dragging, Sortables, Droppables, plug-and-play components and visual effects.
  • Cycle
    • Versatile and lightweight image slideshow plugin.
link|flag
If someone could try and provide a very brief description of those that have not already been described in other posts, I'll try and roll them all into a summarizing post. – Don Nov 6 '08 at 5:12
3  
Interface is depreciated and no longer works with 1.2.6 - superseeded by the UI – redsquare Nov 6 '08 at 11:01
From JSON link: Update 2007-09-13: As of version 1.2, the jQuery core now supports cross-domain JSONP downloads as part of the native Ajax support. I suggest you use this support instead of the plugin. – Alexander Abramov Nov 1 at 18:57
vote up 14 vote down

We currently use:

Most impressive

Jquery UI elements:

Useful community plugins:

More to come, I'll add links etc...

link|flag
1  
Hotkeys is so good. – Natrium Jun 11 at 7:55
Defo - HotKeys is amazing. Also great way out for submit/enter buttons etc as well as keyboard productivity shortcuts – ip Jun 11 at 11:23
vote up 11 vote down

I think that Flot plugin (a plotting library / plugin) deserves a place in this "must-have" list.

In addition, it is used here, in StackOverflow, to display the histogram of the reputation in the user account page.

link|flag
That is pretty impressive - I thought those we're images the first time I saw them. – HBoss Nov 6 '08 at 18:52
+1 Wow, Flot is pretty cool. Good find! – TehOne Sep 30 at 22:28
vote up 6 vote down
link|flag
Great answer, I'd accept it, but I suppose this isn't really the kind of question that has a "right" answer and I don't want to discourage further responses (yet). – Don Nov 6 '08 at 5:09
vote up 4 vote down

I'll list one I'm working on...

My jLINQ plugin is a jQuery version of .NET LINQ. It's made for working with in-memory collections (not talking directly to the server) and let's you use syntax similar to the following.

var results = $.from(data)
    .ignoreCase()
    .startsWith("firstName","m")
    .or("n")
    .isNot("administrator")
    .orderBy("lastName")
    .select();

It supports a bunch of other commands that you find in LINQ for ordering and grouping along with most of the selection commands like contains, between, greaterThan, etc...

Here is a demo - It's stable, but still in progress

Maybe not must have, but might be useful as it progresses...

link|flag
I know nothing about .Net so probably shouldn't even be commenting but....I believe that LINQ is a means of accessing data (relational, XML, etc.), isn't this the kind of thing that you generally wouldn't want in your client-side code, where anyone could modify it? – Don Nov 6 '08 at 5:07
1  
LINQ let's you also work with in-memory objects and arrays. That's all this is for. It doesn't actually talk to databases on the server side. – HBoss Nov 6 '08 at 5:09
So, typically you would use it to navigate through data stored in JS objects? – Don Nov 6 '08 at 5:11
Right, it's handy for working with arrays of objects. You can query the properties on the objects. – HBoss Nov 6 '08 at 5:12
Great, I'll check out the docs if I've any further questions. – Don Nov 6 '08 at 5:14
vote up 4 vote down

I just found jqGrid and it looks very good.

and it also has lots of documentation (right now a 99 pages pdf) and examples

link|flag
vote up 3 vote down

I have been very impressed with the Filament Group's Date Range Picker

link|flag
vote up 3 vote down

jQuery tools from Flowplayer is really fancy. I really like the expose and overlay plugin.

link|flag
vote up 2 vote down

UI is definitely a must-have. As a grid component, I would recommend jqGrid. IMHO, it is better than flexiGrid.

link|flag
vote up 2 vote down

I know this is an old post but, just thought I would throw my 2 cents in, for future reference.

Colorbox - Definitely the best modal window/lightbox for Jquery.

The Validation plugin (previously mentioned) also works very well.

link|flag
vote up 1 vote down

If you're using Visual Studio 2008 to code your jQuery you need the Intellisense: http://weblogs.asp.net/bleroy/archive/2008/10/27/jquery-intellisense-documentation-file-available.aspx

link|flag
You dont need it, just a nice to have:) – redsquare Nov 6 '08 at 11:01
If you're doing jQuery in VS 2008 I think it's a must-have ;) – Slace Nov 6 '08 at 22:28
vote up 1 vote down

http://docs.jquery.com/Plugins/dimensions , it has great offset and outerwith functions...

link|flag
vote up 1 vote down

UI - no better way to do draggables, resizables and few others.

Slibox2 - ultimate lightbox clone for jQuery, very easy to use.

iFixPng - simple solution for IE6 PNG w/alpha.

link|flag
vote up 1 vote down

For an unobtrusive way to send messages to the client without affecting the page's content permanently, I use jGrowl, based on the OSX Growl system.

Lot's of options, settings, and it keeps the page clean : )

link|flag
vote up 0 vote down

I'm a big fan of jTemplates, which gives you client side templating. I find it extremely powerful, especially for rendering results.

link|flag
vote up 0 vote down
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.