kivitendo/js/jquery.checkall.js @ fc3b49d6
69862f82 | Sven Schöling | /*
|
||
* jQuery SelectAll plugin 1.1
|
||||
*
|
||||
46019c3f | Moritz Bunkus | * Copyright (c) 2009 Sven Schöling
|
||
69862f82 | Sven Schöling | */
|
||
;(function($) {
|
||||
$.fn.extend({
|
||||
b671b160 | Sven Schöling | checkall: function(target, property, inverted) {
|
||
7ff0d2ab | Moritz Bunkus | if (property == null)
|
||
property = 'checked';
|
||||
69862f82 | Sven Schöling | return $(this).click(function() {
|
||
b671b160 | Sven Schöling | $(target).prop(property, inverted ? !$(this).prop('checked') : $(this).prop('checked'));
|
||
69862f82 | Sven Schöling | });
|
||
}
|
||||
});
|
||||
})(jQuery);
|