This is probably an easy question, but I can't find an answer anywhere or get it to work.
I'm using http://silviomoreto.github.io/bootstrap-select/ plugin.
How can I fire an event when product items select all/deselect all? I have tried with jquery click and change events like this:
$(document).on('click','#productCategory', function(event) {
alert("test");
});
This is my Select list:
<select id="productCategory" multiple data-actions-box="true">
<option>Laptop</option>
<option>Tablet</option>
<option>Computer</option>
</select>