Revision b671b160
Von Sven Schöling vor fast 11 Jahren hinzugefügt
js/jquery.checkall.js | ||
---|---|---|
7 | 7 |
;(function($) { |
8 | 8 |
|
9 | 9 |
$.fn.extend({ |
10 |
checkall: function(target, property) { |
|
10 |
checkall: function(target, property, inverted) {
|
|
11 | 11 |
if (property == null) |
12 | 12 |
property = 'checked'; |
13 | 13 |
return $(this).click(function() { |
14 |
$(target).prop(property, $(this).prop('checked')); |
|
14 |
$(target).prop(property, inverted ? !$(this).prop('checked') : $(this).prop('checked'));
|
|
15 | 15 |
}); |
16 | 16 |
} |
17 | 17 |
}); |
Auch abrufbar als: Unified diff
jquery.checkall für Mahnungen invertiert