Skip to content

jQuery

September 29, 2023
April 12, 2016

jQuery

jQuery Learning Center
jQuery Fundamentals :: A guide to the basics of jQuery

How jQuery Works - An Introduction | benmccormick.org

jQuery — SitePoint
alvarotrigo jquery

Alternatives

javascript-snippets

Zepto.js: the aerogel-weight jQuery-compatible JavaScript library
Miq JavaScript library

You Might Not Need jQuery
nefe/You-Dont-Need-jQuery: Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript.
jQuery considered harmful | Lea Verou
You Don't Need jQuery! – Free yourself from the chains of jQuery by embracing and understanding the modern Web API and discovering various directed libraries to help you fill in the gaps.

Plugins

jQuery Plugin Registry read-only mode
npm "jquery-plugin"

ermouth/jQuery.my: jQuery.my is a plugin that binds form controls with js data structures.

layout

kudago/waterfall: Waterfall layout. Extremely fast lightweight version of fluid columns masonry layout of isotope.

Isotope v2

widgets

wiringtheworld/Snarl: Growl style notifications for your web app.
Modaal is a WCAG 2.0 Level AA accessible modal plugin
jQuery Animated Typing with Typed.js | by Matt Boldt

Tips and Tricks

jQuery Multiple Filter - Webegg

Move cursor to end of input

//usage
moveCursorToEnd($("input"));

//function
function moveCursorToEnd(input) {
  var originalValue = input.val();
  input.val("");
  input.blur().focus().val(originalValue);
}