jQuery F
jQuery F
jQuery F
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 plugin for immediately doing actions when elements are loaded into the DOM.
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.
Get information about hidden DOM elements
.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 plugin to make it easier to create on-the-fly HTML elements and insert them into the DOM.
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.
jQuery.eye is a jQuery plugin for monitoring changes made to elements’ DOM or CSS properties as well as monitoring changes of the returned results from jQuery methods ran on a given element. When a change is detected a callback function is fired. Additionally provided are methods for pausing a watch, starting a watch, and retrieving … Continue reading
jQuery plugin for DOM change observer events