jquery.com

Since jQuery 3 saw it's first release candidate today, the links has a list of (breaking) changes.

alfajango.com

The CSS Emoticons plugin is a simple jQuery plugin (and stylesheet) that allows you to turn any text emoticons on...

thirdroute.com

Captify is a plugin for jQuery written by Brian Reavis (@brianreavis) to display simple, pretty image captions that appear on...

github.com

jquery-placeholder is a simple jQuery plugin that enables form placeholders in browsers that do not support them natively, i.e. IE < 10. Properties Works in IE6. Automatically checks whether the...

...and possibly other browsers.) Caches the results of its two feature tests in jQuery.fn.placeholder.input and jQuery.fn.placeholder.textarea. For example, if @placeholder is natively supported for input elements, jQuery.fn.placeholder.input will be true...

jqueryui.com

UI sortable helps reordering items with drag 'n drop. It works quite fine. Proven configuration for sorting table rows

jqueryui.com

...the multiple: true option, but right now this is the way. Credits go to jqueryui.com...

makandra dev

webpack is a very powerful asset bundler written in node.js to bundle (ES6) JavaScript modules, stylesheets, images, and other assets...

...that is imported as a whole before we use $(): // application.js import 'jquery' import 'site' // jquery.js import jquery from 'jquery' window.jQuery = jquery window.$ = jquery // site.js $('...').on('click...

You can use this code: function scrollToLine($textarea, lineNumber) { var lineHeight = parseInt($textarea.css('line-height')); $textarea.scrollTop(lineNumber * lineHeight); }

I use this to simulate the (non-existing) :last-letter CSS pseudoclass, e. g. to insert a tombstone at the...

This is non-trivial because you need to fake event objects and require different code for different browsers. Luckily, there...

makandra dev
amsul.ca

The mobile-friendly, responsive, and lightweight jQuery date & time input picker. Does not depend on jQuery UI, but currently does...

Code splitting is a feature of esbuild that can keep huge libraries out of the main bundle. How code splitting...

odyniec.net

imgAreaSelect is a jQuery plugin for selecting a rectangular area of an image. It allows web developers to easily implement...

makandra dev
blog.jquery.com

No big features, but many improvements under the hood: Faster selector engine Many bug fixes Note that jQuery 2.0, scheduled...

steamdev.com

zClip is a lightweight jQuery "copy to clipboard" plugin built using the popular Zero Clipboard library. This plugin uses an...

andismith.com

If you need to upgrade code that uses the old jQuery methods bind, delegate, live, unbind and die, the attached...

makandracards.com

The step we used in the past (Then "foo" should not be visibile) doesn't reliably work in Selenium features...

github.com

As the title says: this jQuery plugin creates bar charts from HTML tables. It comes in some different flavors.

makandra dev
blueimp.github.com

...supports drag & drop. Its default is built on Bootstrap, but there's a version for jQuery-UI...

jquerymobile.com

The jQuery project is really excited to announce the work that we’ve been doing to bring jQuery to mobile...

harvesthq.github.com

Chosen is a JavaScript plugin that makes long, unwieldy select boxes much more user-friendly. It is currently available in...

CSS4 comes with :has. E.g. h1:has(b) would select all tags that contain a tag. This is implemented in...

Sometimes you need to dynamically load an image and do something as soon as its loaded (when for example its...