Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cowboy/jquery-misc
Miscellaneous small jQuery plugins and code fragments
https://github.com/cowboy/jquery-misc
Last synced: 17 days ago
JSON representation
Miscellaneous small jQuery plugins and code fragments
- Host: GitHub
- URL: https://github.com/cowboy/jquery-misc
- Owner: cowboy
- Created: 2009-09-29T17:45:01.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2010-12-16T18:14:02.000Z (almost 14 years ago)
- Last Synced: 2024-10-14T14:18:44.084Z (about 1 month ago)
- Language: JavaScript
- Homepage: http://benalman.com/projects/jquery-misc-plugins/
- Size: 396 KB
- Stars: 75
- Watchers: 7
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# Miscellaneous small jQuery plugins and code fragments #
[http://benalman.com/projects/jquery-misc-plugins/](http://benalman.com/projects/jquery-misc-plugins/)This repository contains a collection of minor jQuery plugins which are too small, too simple, or just not exciting enough to require individual pages. More will be added as I find the time... and the code!
Visit the [project page](http://benalman.com/projects/jquery-misc-plugins/) for more information and usage examples!
* [jQuery :attached, :detached selectors](http://benalman.com/projects/jquery-misc-plugins/#attached-detached) - Selectors that match elements currently attached to or detached from the DOM.
* [jQuery each2](http://benalman.com/projects/jquery-misc-plugins/#each2) - If you're going to use `$(this)` inside an `.each` loop, iterating over many thousands of elements, use this plugin instead. It's faster.
* [jQuery getClassData](http://benalman.com/projects/jquery-misc-plugins/#getclassdata) - If you're not yet using HTML 5 data- attributes, you can store basic data in an element's class attribute for easy retrieval.
* [jQuery getUniqueClass](http://benalman.com/projects/jquery-misc-plugins/#getuniqueclass) - For when you really need a unique classname.
* [jQuery htmlDoc](http://benalman.com/projects/jquery-misc-plugins/#htmldoc) - Get `html`, `head` and `body` in your `$(html)`.
* [jQuery isjQuery](http://benalman.com/projects/jquery-misc-plugins/#isjquery) - Determine if an object reference is a jQuery object.
* [jQuery loadAdScript](http://benalman.com/projects/jquery-misc-plugins/#loadadscript) - Load third party ad network scripts that use `document.write` into specific containers.
* [jQuery :nth-last-child selector](http://benalman.com/projects/jquery-misc-plugins/#nth-last-child) - Works exactly like jQuery's built-in :nth-child selector, except that it counts from the end.
* [jQuery queueFn](http://benalman.com/projects/jquery-misc-plugins/#queuefn) - Execute any jQuery method or arbitrary function in the animation queue.
* [jQuery scrollbarWidth](http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth) - Calculate the scrollbar width dynamically!
* [jQuery selectColorize](http://benalman.com/projects/jquery-misc-plugins/#selectcolorize) - Basic cross-browser colored select boxes.
* [jQuery serializeObject](http://benalman.com/projects/jquery-misc-plugins/#serializeobject) - Serialize a form into an object.
* [jQuery viewportOffset](http://benalman.com/projects/jquery-misc-plugins/#viewportoffset) - Calculate left and top from the element's position relative to the viewport, not the document.These once-misc plugins have been "promoted" to full projects:
* [jQuery replaceText](http://benalman.com/projects/jquery-replacetext-plugin/) - String replace for your jQueries!
* [jQuery throttle / debounce](http://benalman.com/projects/jquery-throttle-debounce-plugin/) - Rate-limit your functions in multiple useful ways, great for event callbacks.
* [jQuery Untils](http://benalman.com/projects/jquery-untils-plugin/) - nextUntil, prevUntil, and parentsUntil traversal methods.## License ##
Copyright (c) 2010 "Cowboy" Ben Alman
Dual licensed under the MIT and GPL licenses.
[http://benalman.com/about/license/](http://benalman.com/about/license/)