Projekt

Allgemein

Profil

Herunterladen (342 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
/*
* jQuery SelectAll plugin 1.1
*
* Copyright (c) 2009 Sven Sch?ling
*/

;(function($) {

$.fn.extend({
checkall: function(target) {
var saved_this = this;
return $(this).click(function() {
$(target).each(function() {
$(this).attr('checked', $(saved_this).attr('checked'));
});
});
}
});

})(jQuery);
(12-12/26)