Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

ajaxload


jSelect : Load and manage data in select elements

This plugin enables to manage Select elements in forms. Offers the possibility to add options from an JS Array, a XML file or JSON datas, or even, directly from the Select itself with a prompt.

Usage example:

      $('select').jselect({
            data: [ [ 0, "Option 1" ], [ 1, "Option 2", true, "my-class" ] ],
            replaceAll: false,
            onChange: function(value, text){ isChange(value, text); },
            onComplete: function(){ isDone(); },
            loadUrl: "json.js",
            loadDataType: "json"
      });

Throbber (aka loading animation)

Throbber creates a loading animation for jQuery, ready to be used in your AJAX applications. Of course, the throbber is not limited to AJAX but can also be triggered manually.

Using the plugin is easy:

$("#button").throbber("click");

adds a loading animation (›throbber‹) to the DOM node with the ID ›button‹ which shows up when a click event is triggered.