Tuesday 30 April 2013

jQuery Roundup: Sco.js, Datepicker Skins, LocationHandler


Note: You can send your plugins and articles in for review through our contact form.

Sco.js



Sco.js (GitHub: terebentina / sco.js, License: Apache 2.0) by Dan Caragea is a collection of Bootstrap components. They can be dropped into an existing Bootstrap project, or used separately as well.



Some of the plugins are replacements of the Bootstrap equivalents, but prefixed with $.scojs_. There are also a few plugins that are unique to Sco.js, like $.scojs_valid for validating forms, and $.scojs_countdown for displaying a stopwatch-style timer.



In cases where Sco.js replaces Bootstrap plugins, the author has been motivated by simplifying the underlying markup and reducing the reliance on IDs.



Dan has included tests, and full documentation for each plugin.



jQuery Datepicker Skins



jQuery datepicker skins



Artan Sinani sent in these jQuery datepicker skins (GitHub: rtsinani / jquery-datepicker-skins). They?re tested with jQuery UI v1.10.1 and jQuery 1.9.1, so they should work with new projects quite nicely.



LocationHandler



LocationHandler (GitHub: slv / LocationHandler) by Michele Salvini is a plugin for managing pushState and onpopstate. It emits events for various stages of the history change life cycle. Each supported state is documented in the readme, but the basic usage looks like this:


$(document).ready(function() {
var locationHandler = new LocationHandler({
locationWillChange: function(change) {
},
locationDidChange: function(change) {
}
});
});


The change object has properties for the from/to URLs, and page titles as well.


crawled from : Dailyjs

No comments:

Post a Comment