Projekt

Allgemein

Profil

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

;(function($) {

$.fn.extend({
7ff0d2ab Moritz Bunkus
checkall: function(target, property) {
if (property == null)
property = 'checked';
69862f82 Sven Schöling
return $(this).click(function() {
7ff0d2ab Moritz Bunkus
$(target).prop(property, $(this).prop('checked'));
69862f82 Sven Schöling
});
}
});

})(jQuery);