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.