This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
jquery-check-all.js
53 lines (42 loc) · 1.57 KB
/
jquery-check-all.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
;(function ($, window, document) {
var pluginName = 'checkAll';
var defaults = {
container: document,
childCheckboxes: 'input[type=checkbox]',
showIndeterminate: false
};
function checkAll(element, options) {
this.$el = $(element);
this.options = $.extend({}, defaults, this.$el.data(), options) ;
this.init();
}
checkAll.prototype.init = function() {
this._checkChildren();
var plugin = this;
this.$el.on('change', function(e) {
var $children = $(plugin.options.childCheckboxes, plugin.options.container).not(plugin.$el);
$children.prop('checked', $(this).prop('checked'));
});
$(this.options.container).on('change', plugin.options.childCheckboxes, function(e) {
plugin._checkChildren();
});
};
// prevent multiple instantiations
$.fn[pluginName] = function (options) {
return this.each(function() {
if (!$.data(this, 'plugin_' + pluginName)) {
$.data(this, 'plugin_' + pluginName,
new checkAll(this, options));
}
});
}
checkAll.prototype._checkChildren = function() {
var totalCount = $(this.options.childCheckboxes, this.options.container).not(this.$el).length;
var checkedCount = $(this.options.childCheckboxes,this.options.container)
.filter(':checked').not(this.$el).length;
var indeterminate = this.options.showIndeterminate &&
checkedCount > 0 && checkedCount < totalCount;
this.$el.prop('indeterminate', indeterminate);
this.$el.prop('checked', checkedCount === totalCount && totalCount !== 0);
}
})(jQuery, window, document);