jQuery DOM Cache

Using $.cache (or $.domCache) may dramatically increase the performance of your web application by eliminating unnecessary DOM traversal. Manipulate the DOM (with event handling) more efficiently by referencing cached DOM elements.

randomizer

jQuery plugin that give you functions to get/set random values or call random functions.

jQuery F

jQuery F

domajax.com – use Ajax without JavaScript

Domajax is a free jQuery plugin that give you tools to add ajax calls within your application, without a piece of javascript. It uses HTML5’s data- attribute, and jQuery’s .on() method to handle your ajax interactions.

jQuery waitFor

jQuery plugin for immediately doing actions when elements are loaded into the DOM.

.closestDescendant( selector [, findAll ] )

Get the first element(s) that matches the selector by traversing down through descendants in the DOM tree level by level. It use a breadth first search (BFS), that mean it will stop going deeper in a subtree if the first matching descendant was found in the current subtree.

jQuery Even If Hidden

Get information about hidden DOM elements

jQuery Subordinate

.subordinate() is a combination of .append() and .find(). It appends an element but returns this new created jQuery object. That makes your code way much shorter and cleaner, when building complex DOM structures on-the-fly.

jQuery createHtml

jQuery plugin to make it easier to create on-the-fly HTML elements and insert them into the DOM.

jQueryCreate

The jQuery creator plugin Allows you to create your elements using CSS selectors syntax. Don’t use javascript with different syntaxes when it comes to dynamic DOM element creation. Use the same syntax for element querying and creation.