Skip to content

Commit 454a71d

Browse files
committed
Adding method to return unchecked items, issue #595
1 parent 2489720 commit 454a71d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/jquery.multiselect.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,10 @@
637637
getChecked: function() {
638638
return this.menu.find('input').filter(':checked');
639639
},
640+
641+
getUnchecked: function() {
642+
return this.menu.find('input').not(':checked');
643+
},
640644

641645
destroy: function() {
642646
// remove classes + data

0 commit comments

Comments
 (0)