kivitendo/js/jquery.checkall.js @ 44c56028
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);
|