50 Amazing jQuery Plugins That You Should Start Using Right Now

jQuery has a wonderful community of programmers that create incredible things. However, it may become difficult to sift through everything that is released and find the gems that are absolute must-haves. This is why, in this post, you will find a collection of 50 new jQuery plugins and JavaScript libraries that, when applied with good measure, can make your sites a joy to use. The plugins are organized into categories for easier browsing. Enjoy!

Dialogs

The browser's built-in dialogs are easy to use but are ugly and non-customizable. If you want your application to look sharp and professional, you will have to part with the loathed default look. The plugins in this section can substitute the built-in dialogs and can be readily customized.

1. Alertify.js

Alertify (github) is small library for presenting beautiful dialog windows and notifications. It is easy to customize with CSS, has a simple API and doesn't depend on third party libraries (but plays nicely with them). To use it, include the js file and call the methods of the global alertify object:

// alert dialog
alertify.alert("Message");

// confirm dialog
alertify.confirm("Message", function (e) {
    if (e) {
        // user clicked "ok"
    } else {
        // user clicked "cancel"
    }
});
i_0048_2.jpg

2. jQuery Avgrund

jQuery Avgrund (github) is another cool dialog solution. It is not as feature-rich as alertify, but it has the Wow! factor that your web app needs. The dialog is shown with an impressive animation that brings it into focus, while blurring and darkening the background.

i_0047_3.jpg

Forms

Forms are tedious and boring. Everyone hates filling them. It is even a bigger deal if no client-side validation is present and we are forced to enter the data a second time. The plugins in this section attempt to make things better by enhancing your forms with useful functionality.

3. iCheck

iCheck (github) is a jQuery plugin that enhances your form controls. It is perfectly customizable, works on mobile and comes with beautiful flat-style skins. To use it, include the js and css files in your page, and convert all your radio and checkboxes with a few lines of jQuery.

$(document).ready(function(){
    $('input').iCheck({
        checkboxClass: 'icheckbox_minimal',
        radioClass: 'iradio_minimal'
    });
});
i_0046_4.jpg

4. Long Press

Long Press is a jQuery plugin that eases the writing of accented or rare characters. Holding down a key while typing will bring a bar with alternative characters that you can use. The plugin also has a github page.

i_0045_5.jpg

5. jQuery File Upload

jQuery File Upload (github) is a widget with multiple file selection, drag&drop support, progress bars and preview images. It supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) and is easy to embed into your application thanks to a number of hooks and callbacks.

i_0044_6.jpg

6. Complexify

Complexify (github) is a jQuery plugin that aims to assess how complex passwords are. You can use it in signup forms to present a percentage to users (like we did in this tutorial). With this plugin you can force passwords to contain a combination of upper/lowercase letters, numbers, special symbols and more. I should note that this is purely a client-side solution, which means that it can be circumvented. This is why you should also check the password complexity on the server side.

i_0043_7.jpg

7. jQuery Knob

jQuery Knob (github) is a plugin for turning input elements into touchable jQuery dials. It is built using canvas, and is fully customizable by setting data attributes on the inputs like this:

<input class="knob" data-width="150" data-cursor=true data-fgColor="#222222" data-thickness="0.3" value="29">

The dials can be controlled using the mouse (click and drag; mousewheel), the keyboard, and by using touch on mobile devices.

i_0042_8.jpg

8. Pickadate.js

Pickadate.js (github) is a jQuery plugin that creates a responsive and mobile friendly date selection widget. It is very easy to use and can be customized with CSS. To use it, include the js file and the stylesheet, and call the plugin on your input element:

$('.datepicker').pickadate();

The plugin takes lots of options which you can find in the docs.

i_0041_9.jpg

9. Chosen

Chosen (github) is a powerful widget which converts a select input into a searchable dropdown list. It is easy to customize with CSS, and you can hook your own code thanks to a number of callbacks. The plugin also updates the original element (which is hidden) so that submitting it as a part of a form or reading it with JS will give you the correct result.

i_0040_10.jpg

10. Fancy Input

Fancy Input (github) is a jQuery plugin that makes entering or deleting text in a textboox uber cool. It uses CSS3 animations to achieve the effect. To use it, simply include the JS file after jQuery, and call the plugin:

$('div :input').fancyInput();
i_0039_11.jpg

11. Typeahead.js

Typeahead (github) is a fast autocomplete library by twitter. It is inspired by twitter.com's search box and is full of features. It displays suggestions as users type, and shows the top suggestion as a hint. The plugin works with hardcoded data as well as remote data, and rate-limits network requests to lighten the load.

i_0038_12.jpg

12. Parsley.js

Parsley.js (github) is an unobtrusive form validation library. It lets you validate form fields without having to write a single line of JavaScript. Instead, you have to place data attributes in the input fields that you need to be validated, and Parsley handles the rest. The library works with either jQuery or Zepto and is less than 800 lines long.

i_0037_13.jpg

Page scrolling and Parallax

Single page websites that feature a parallax scrolling effect are popular these days. They will probably stay in fashion for some time, as they are perfect for sites with low information density and lots of photos - marketing sites, portfolios and more. These plugins aim to make them easier to develop.

13. Windows

Windows (github) is a plugin that lets you build single page websites with sections that take up the whole screens. The plugin gives you callbacks that are called when new sections come into visibility and handles snapping, so you can easily extend it with custom navigation menus or more. Here is an example:

$('.window').windows({
    snapping: true,
    snapSpeed: 500,
    snapInterval: 1100,
    onScroll: function(scrollPos){
        // scrollPos:Number
    },
    onSnapComplete: function($el){
        // after window ($el) snaps into place
    },
    onWindowEnter: function($el){
        // when new window ($el) enters viewport
    }
});
i_0036_14.jpg

14. Cool Kitten

Cook Kitten (github) is a responsive framework for parallax scrolling websites. It organizes the sections of your site into slides and uses the jQuery Waypoints plugin to detect when they come into visibility, which causes the navigation menu to get updated.

i_0035_15.jpg

15. Sticky

Sticky (github) is a jQuery plugin that gives you the ability to make any element on your page always stay visible when scrolling the page. This can come handy in your single-page website to present a sticky navigation menu or sharing bar. It is straightforward to use, the only option you may pass is a top offset:

$("#sticker").sticky({topSpacing:0});
i_0034_16.jpg

16. Super Scrollorama

Super Scrollorama (github) is a jQuery plugin for cool scroll animations. It lets you define tweens and animations that are triggered when an element comes into view, or on specific scroll points.

$(document).ready(function() {
  var controller = $.superscrollorama();
  controller.addTween('#fade',
    TweenMax.from($('#fade'), .5, {css:{opacity:0}}));
});
i_0033_17.jpg

17. Stellar.js

Stellar.js (github) is a jQuery plugin that provides parallax scrolling effects to any scrolling element. It looks for any parallax backgrounds or elements within the specified element, and repositions them when the element scrolls. You can control the scroll speed of the elements by using data attributes for a true parallax effect. To trigger the plugin, simply call it on your root element (or on window):

$('#main').stellar();
i_0032_18.jpg

18. Scrollpath

Scrollpath (github) is another scrolling plugin, but what it gives you that the previous plugin does not, is the ability to define your own custom scroll path. The plugin uses canvas flavored syntax for drawing paths, using the methods moveTo, lineTo and arc. To help with getting the path right, a canvas overlay with the path can be enabled when initializing the plugin.

i_0031_19.jpg

Text effects

There has been a huge improvement in web typography in the last few years. From just a handful of web-safe fonts that we could use not long ago, we now can embed custom fonts and enhance them with CSS3. The plugins in this section give you a great deal of control over text.

19. Textillate.js

Textillate.js (github) is a jQuery plugin that combines the power of animate.css and lettering.js, to apply advanced animations on text elements. The animations are CSS3 based, which makes them smooth even on mobile devices. There is a large number of effects to choose from.

i_0030_20.jpg

20. Arctext.js

Arctext.js (demo) is a jQuery plugin that lets you arrange each letter of a text element along a curved path. Based on lettering.js, it calculates the right rotation of each letter and distributes the letters equally across the imaginary arc of the given radius, and applies the proper CSS3 rotation.

i_0029_21.jpg

21. Bacon

Bacon (githug) is a jQuery plugin that allows you to wrap text around a bezier curve or a line. This gives you a great deal of typographic control, and as illustrated by the plugin's home page, the ability to put bacon strips in the middle of your designs (finally!).

i_0027_23.jpg

22. Lettering.js

Lettering.js (github) is a simple but effective jQuery plugin for better web typography. What it does, is split the textual content of an element into individual spans with ordinal .char# classes, so you can style each letter individually.

i_0026_24.jpg

23. jQuery Shuffle Letters

jQuery Shuffle Letters (demo) is one of our experiments. It creates an interesting effect that randomizes the content of a text element. Here is how to use it:

// Shuffle the container with custom text
$('h1').shuffleLetters({
    "text": "show this text!" // optional
});

The text parameter is optional - if it is missing, the plugin will take the content of the element.

i_0025_25.jpg

24. FitText.js

FitText.js (github) is a jQuery plugin for inflating web type. It automatically scales the text of an element to take up the full width of its container. This makes the layout responsive and looking sharp on any device.

i_0024_26.jpg

Grids

The plugins in this section make it easy to organize content into grids. They calculate the best way to pack your items densely and align them in real time.

25. Gridster.js

Gridster.js (github) is a jQuery plugin that allows building intuitive draggable layouts from elements spanning multiple columns. You can even dynamically add and remove elements from the grid. Dragging an element causes the others to rearrange and free up place for it, which can be great for user-controlled layouts and dashboards.

i_0023_27.jpg

26. Freetile

Freetile (github) is a plugin for jQuery that enables the organization of webpage content in an efficient, dynamic and responsive layout. It can be applied to a container element and it will attempt to arrange it's children in a layout that makes optimal use of screen space, by "packing" them in a tight arrangement.

i_0022_28.jpg

27. Stalactite

Stalactite (github) is a library that packs page content depending on the available space. It takes a lazy approach and sorts the elements sequentially with the scrolling of the page, which makes for an interesting effect.

i_0021_29.jpg

Custom scrollbars

Something that we have all wanted to do in one point or another is to customize the appearance of the default browser scrollbars. Some browsers allow this, but it doesn't work everywhere. The two plugins below make that possible.

28. nanoScroller.js

nanoScroller.js (github) is a jQuery plugin that offers a simplistic way of implementing Mac OS X Lion-styled scrollbars for your website. It uses minimal HTML markup and utilizes native scrolling. The plugin works on iPad, iPhone, and some Android Tablets.

i_0020_30.jpg

29. jQuery Custom Content Scroller

jQuery Custom Content Scroller (github) is a custom scrollbar plugin that’s fully customizable with CSS. Features vertical/horizontal scrolling, mouse-wheel support (via the jQuery mousewheel plugin), scrolling buttons, scroll inertia with easing, auto-adjustable scrollbar length, nested scrollbars, scroll-to functionality, user defined callbacks and more.

i_0019_31.jpg

Backgrounds

Full screen backgrounds are another popular design trend. The plugins listed here aim to make it easier to set a single image, a gallery or even a video as a background.

30. Tubular.js

Tubular.js is a jQuery plugin that lets you set a YouTube video as your page background. Just attach it to your page wrapper element, set some options, and you're on your way:

$('#wrapper').tubular({videoId: '0Bmhjf0rKe8'});

The plugin also supports controlling the video with play/pause, setting the volume and more.

i_0017_33.jpg

31. Backstretch

Backstretch (github) is a simple jQuery plugin that allows you to add a dynamically-resized, slideshow-capable background image to any page or element. It will stretch any image to fit the page or block-level element, and will automatically resize as the window or element size changes. Images are fetched after your page is loaded, so your users won't have to wait for the (often large) image to download before using your site. For the curious, and those that don't want to use plugins, there is also a technique that can set a full screen background image purely with CSS.

i_0016_34.jpg

32. Supersized

Supersized (github) is an advanced full screen background plugin for jQuery. With it, you can show a set of photos as a slideshow that takes the full width and height of the page. This makes it perfect for photography sites, portfolios, or event sites. The plugin comes with lots of options, supports multiple transition effects and can be extended with custom themes.

supersized.jpg

Galleries and image effects

The plugins listed here aim to enhance the way visitors browse images on your site, and let you apply interesting effects that will make your galleries stand out.

33. jQuery TouchTouch

jQuery TouchTouch (demo) is a plugin we released last year that aims to be simple to use and to work on mobile devices. It uses CSS transitions to make animations smoother, and preloads images dynamically. Also, it can be completely restyled by modifying a single CSS file.

i_0007_43.jpg

34. iPicture

iPicture is a jQuery plugin that can create interactive image walkthroughs. It can overlay tooltips and hints on top of the image, and presents rich content like HTML, photos and videos. It is easy to integrate into your site and can be customized and extended with CSS.

i_0006_44.jpg

35. Adipoli jQuery Image Hover Plugin

Adipoli (demo) is a jQuery plugin for creating stylish image hover effects. With it, you can turn images black and white, apply popout, slice and box transitions. To use the plugin, you only need to include the necessary files and define the start and hover effects:

$('#image1').adipoli({
    'startEffect' : 'normal',
    'hoverEffect' : 'popout'
});

This makes it the perfect addition to your gallery or portfolio page.

i_0005_45.jpg

36. Swipebox

Swipebox (github) is a lightbox plugin that supports desktop, mobile devices and tablet browsers. It understands swipe gestures and keyboard navigaton and is retina-ready. To enable it, include the plugin JS/CSS files, and add the swipebox class to the images that you want to show in a lightbox:

<a href="big/image.jpg" title="My Caption">
    <img src="small/image.jpg" alt="image">
</a>

Like the rest of the plugins in this collection, it can be customized entirely with CSS.

i_0004_46.jpg

37. TiltShift.js

TiltShift.js (github) is a neat plugin that replicates the tilt-shift effect (which causes real-life object to appear as miniatures) using CSS3 image filters. The bad news is that this only works on Chrome and Safari at the moment, but support should gradually land in other browsers as well.

i_0003_47.jpg

38. Threesixty.js

Threesixty.js (github) is a jQuery plugin that creates draggable 360 degree views. You have to provide the plugin with the path to a collection of images of your product (shot from different angles) and Threesixty.js will assemble them into a interactive view. You can drag or use the arrow keys to explore the object from different angles.

i_0002_48.jpg

39. Swipe.js

Swipe.js (github) is another responsive slider. What makes it stand apart is that it is specifically targeted at touch devices. This allows it to not only understand gestures, but to also react to touch similarly to a native application. It has resistant bounds and scroll prevention and is compatible with browsers from IE7 onward.

swipe.jpg

40. CamanJS

CamanJS (github) is a powerful image manipulation library, built on top of the canvas element. With it, you can manipulate the pixels of an image and achieve an almost Photoshop-like control. If you can remember, this is the library we used a few months ago to build a web app with filters similar to Instagram.

i_0001_49.jpg

41. SpectragramJS

Spectragram (github) is a jQuery plugin that aims to make working with the Instagram API easier. It can fetch user feeds, popular photos, photos with specific tags and more.

i_0000_50.jpg

Misc

This section holds plugins and libraries that don't belong in the other categories but are worth the look.

42. jQuery Countdown

jQuery Countdown (demo) is a jQuery plugin that shows the remaining days, hours, minutes and seconds to an event, and updates the remaining time with an animation every second. It is easy to use - include the plugin JS and CSS files, and trigger it on document ready:

$('#countdown').countdown({
    timestamp   : new Date(2015, 0, 3) // January 3rd, 2015
}

The countdown will be presented in the #countdown div.

i_0028_22.jpg

43. List.js

List.js (github) is a library that enhances a plain HTML list with features for searching, sorting and filtering the items inside it. You can add, edit and remove items dynamically. List.js is standalone and doesn't depend on jQuery or other libraries to work.

i_0015_35.jpg

44. jQuery PointPoint

jQuery PointPoint (demo) is a plugin that helps you draw users’ attention to a specific part of the page. It presents a small arrow next to the mouse cursor. This can be useful for pointing to missed form fields, buttons that need to be pressed, or validation errors that need to be scrolled into view.

i_0018_32.jpg

45. Social Feed

Social Feed (github) is a jQuery plugin that presents a feed of the latest public updates on your social accounts. It has a clean design that is built using a template, which you can easily customize.

i_0014_36.jpg

46. Hook.js

Hook.js (github) is an interesting experiment that brings the "pull to refresh" feature you often see in mobile apps, to the web. You can use this to update your mobile site with new content, fetch new posts and more.

i_0013_37.jpg

47. jQuery PercentageLoader

PercentageLoader (bitbucket) is a jQuery plugin for displaying a progress widget in more visually striking way than the ubiquitous horizontal progress bar / textual counter. It makes use of HTML5 canvas for a rich graphical appearance with only a 10kb (minified) javascript file necessary, using vectors rather than images so can be easily deployed at various sizes.

i_0012_38.jpg

48. Chart.js

Chart.js (github) is a new charting library that uses the HTML5 canvas element and provides fallbacks for IE7/8. The library supports 6 chart types that are animated and fully customizable. Chart.js doesn't have any dependencies and is less than 5kb in size. Say goodbye to flash!

i_0011_39.jpg

49. Tooltipster

Tooltipster (github) is a powerful jQuery plugin for displaying tooltips. It works on desktop and mobile browsers, gives you full control over the contents of the tooltips and supports a number of callback functions so you can hook it into your application. If you need something even more lightweght that doesn't use JS at all, you can give a try to hint.css.

i_0010_40.jpg

50. Toolbar.js

Toolbar.js (github) is a jQuery plugin that lets you display a neat pop-up menu. You can choose the actions and icons that are presented in the menu and listen for events. This is perfect for making more of the limited space of a mobile web app interface.

i_0009_41.jpg

51. gmaps.js

gmaps.js (github) is such a useful library that I decided to include it in addition to the 50 plugins above. Gmaps is a powerful library that makes working with Google Maps a great deal easier. You can place markers, listen for events, set the coordinates, zoom level and more, all with a fluid jQuery-like syntax. This is like a breath of fresh air compared to the regular maps JS API, and I highly recommend it.

i_0008_42.jpg

It's a wrap!

You know of a cool plugin that deserves to be in this list? Share it in the comment section!

Bootstrap Studio

The revolutionary web design tool for creating responsive websites and apps.

Learn more

Related Articles

Alaa Badran

What about ALAJAX? www.alajax.com

Ajaxifies Forms easily

Anh Saker

Awesome! thank Martin!

Nice

in great detail

Cleber Gasparoto

So many great libs, thanks!

Excellent and Exceptional collection !!!!!!!!!!!!!!

MOhammedHalim

Thank You..

in Arabic شكرا لك

awesome .............

Amazing collection, thank you.

Let me whore myself out :) Here is my Sly scrolling library.

I think it's pretty good. Especially the API, which is for a little more advanced users, but has a nice & simple shorthands. But I'm obviously biased... :)

Great plugin Darsain I love it !

Is there an option there to make scrolling less sensitive? It seems very robust, and definitely worth mentioning on this thread, but all of the examples scroll so fast.

Paul Mountney

This is an excellent list of JS libraries. I'm in the process of building my own hosted site, and will be able to use some of these in that process. Thank you, once again.

Great Collection !!
thanks..

johnroyzreit

Thanks!

GREAT COLLECTION!!!! found couple to my new project!!!

Kaloyan Kosev

Awesome! I have never seen such detailed article for so many interesting jQuery plugins! Nice job, Martin! It's very helpful to have all this relevant information at one place.

Ilya Grunto

All in one place. Perfect, will use some scripts. Thanks!

Wow, I agree this is definitely and Amazing list of jQuery plugin. Thanks for sharing!

thanks for this collection they are really amazing

I am looking for some nice plugin (like lightbox) for images popup (hover) with nice smooth animations and also for custom pop ups. Any ideas? :)

Thanks Martin
amazing...

I've to say, this is the absolute best collection on jQuery plugin I've ever seen.
Not only it is informative, but the plugins you've chosen are all high quality.

Also, I appreciate the fact that you spent some time adding your own thoughts and insights to each one of them.

Daniel Steiner

As you have suggested gmaps.js, i like to point out jhere.net. I always prefered Bing Maps over Google Maps as it has an - in my point of view - better color scheme and Nokia Maps / Here Maps uses a similar one. The nNokia Maps are imo also better than the Google ones.

Transcendit

Thanks for the post!
Long post should be developed on all keyboards by default, it's just sooo practical!
The jQuery upload file is pretty good!
Lots of interesting plugins!
Thanks

Loving this collection. There need to be more sites/articles collecting good JS plugins together.

I do think that Select2 is worth a mention though. I was using Chosen for a while but hit its limitations. Select2 has far more options/customisation.

fantastic,mind blowing,unbelievable

Another great resources for web development. Great thanks!

nice tut, Martin. All plugins are useful.
I used "Parsley.js" and it worked like charm.

Stamatisse

Great collection... Thanks for sharing!!

Simple, but effective. Check out timeago.js

there are some really good resources here. thanks!

Wow - what a round up!

Nice collection!

Best Jquery plugin list i ever seen.
Awesome work mate
Thanks a lot

Norik Davtian

As the title suggest, it was an awesome list.
Now am thinking of a weekend experimental project with bunch of these plugins smashed together for fun.

Keep it up Martin

Ivo Ivanov

Thank you my fellow Bulgarian :p

very nice and useful plugins

Awesome list mate! Thank you!

Martin P Jr

Dude these are awesome. Cool to see we have the same name (Y)

Paula Lay

Fabulous list - saved me a lot of time with research. Great start for anyone getting into jquery.

Rahul Parekh

Pretty neat and exhaustive list!

LABEYRIE Gallien

Amazing post for web developpers, thanks a lot ! It gave me a plenty of ideas :)

Damian Baker

Hi Martin,

Wow, this list is made of pure awesomeness!!!
Super Scrollorama and ArcText looks really interesting.
Thanks for sharing.

Regards,
Damian
CSS JS Toolbox

First and before all A HUGE THANK YOU MARTIN!.
For me your articles are more than a big help to do my job (with your code tips and demos),but also saving me time by sharing what you just discover and develop.
The fact is that if i want to know "what's new & cool" i just have to come here and read your articles.
Thanks a lot and keep up with this excellent job that we all love but have no time or knowledge or both to do it ourselves

Sinbad Konick

That is what i call collection ..Awesome work man :)

Thank you so much for the list! Very up-to-date and helpful!

Really nice list of plugins! Got another parallaxing plugin for you. I only have a couple demo pages up right now, will be adding more info soon.

Omar Al-Lahham

Great Job ! Thanks :)

Thanks a lot Martin ! All the scripts I was searching for are here =D

HautStyle

Excellent selection of plug-ins!!! Longpress and typeahead seem very very practical! Might try to integrate them soon... Thanks a lot

Arjun Teja

Wow. Finally..an awesome collection !!
:)

Thanks Martin! Really an awesome list. Will sure be using some of the plugins in the near future.

Thanks Martin! Kind of total recall + some new stuff)

I would also recommend http://masonry.desandro.com/ for Tiles - reaaaaly flexible tool.

And also I din't find such a useful tool - http://imakewebthings.com/jquery-waypoints/

Interesting article and good coverage on plugins. At SlingPic we have create an image sharing plugin/widget that allows people to share images from a site from within the image.With the increasing use of images across platforms like Tumblr and new social networks like Snapchat and Instagram we think image sharing strategies will become as important as those currently used for written content. If you are interested have a look at : http://www.slingpic.com or search for "slingpic" on WordPress

Thank you for your work, i have already added a few to a new project

Great collection Martin !
Keep up the good work !

Best jquery list ever! thanks!

Lordoasis

Just starting to learn jQuery...and seriously, Martin you rock!!
Thanks man!

Michael Aigner

Hi,

coming around your site and found a very good listing of jQuery scripts.
Thank you very much and have a good time.

Michael

Very nice collection! There is no color picker on the list. Here's one: http://colpick.com/plugin

raham sher

Great Collection !! thanks..

Bernhard P

Great collection, i'm allready using scrollorama on one of my sites!
This list could use more social plugins though, don't get me wrong spectagram and toolbar look great but I was missing something. so i searched a little and found this.

A plugin to display social feeds on your website: beyondsocial.js
http://beyondthestatic.github.io/jquery.beyondsocial.js/

Yen Howell

Thanks a lot, Martin. Great plugins; I found some very interesting for my projects.

Awesome plugins. Well done Martin :) definitely will use in my projects

Thanks a lot for the effort, very useful!

Great article. Really very useful for web developers

Awesome collection, thanks for sharing!
If I had to add an item, it would be "Pace":
http://github.hubspot.com/pace/docs/welcome/
Very neat progress bar for showing page load process, with many nice templates.

Roberto Prevato

I dare to propose my free jQuery plugin for administrative tables, it has many features: https://github.com/RobertoPrevato/jQuery-KingTable

Mehdi Hesami

hi
Best jquery list ever! thanks!

Hi!

Try the viewScroller.js to create fullpage scrolling websites.
(http://www.viewdesic.com/viewscroller)

Tushar Sharma

The link to iPicture is broken.
Also, it would be great to update this article to include new plugins (have a look at sweetalert).

Thanks for this informative and helpful list!