Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the "must have" jQuery plugins? [closed]

Tags:

jquery

plugins

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

like image 330
Dónal Avatar asked Nov 06 '08 04:11

Dónal


People also ask

What are jQuery plugins?

A jQuery plugin is simply a new method that we use to extend jQuery's prototype object. By extending the prototype object you enable all jQuery objects to inherit any methods that you add. As established, whenever you call jQuery() you're creating a new jQuery object, with all of jQuery's methods inherited.

Is jQuery a plugin library?

A plug-in is piece of code written in a standard JavaScript file. These files provide useful jQuery methods which can be used along with jQuery library methods. There are plenty of jQuery plug-in available which you can download from repository link at https://jquery.com/plugins.

Are jQuery plugins free?

It's lightweight, and because it is extendable, there are jQuery plugins freely available for almost every functionality you can think of. Table of Contents: Web & Mobile Layouts Plugins.


2 Answers

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.
like image 198
Christian C. Salvadó Avatar answered Sep 28 '22 08:09

Christian C. Salvadó


We currently use:

Most impressive

  • Layout (dock, pin, splitter) - just amazing

Jquery UI elements:

  • Tabs - tabbed UI
  • AutoComplete - suggestion box from web service
  • DatePicker - nice calendar date picker

Useful community plugins:

  • Scrollable - scrolls any div
  • Scrollpane - control scrollbar appearance
  • Table sorter - table sorting (client-side) for any simple table
  • QuickSearch - instant searching of table content
  • Validate - form validation (required / type / custom regEx)
  • HotKeys - traps for key shortcuts. Captures EVERY key on the keyboard. Awesome.
  • BlockUI - awesome modal dialogs
  • Curvy Corners - anti-aliased by default
  • Tokenised input (or Facebook autocomplete with Xs) - Facebook style tokenised autocomplete

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

like image 33
10 revs Avatar answered Sep 28 '22 07:09

10 revs