Reputation: 11
How to select all items in jquery chosen i know
$('.my-select-all').click(function(){
$('#my_select option').prop('selected', true); // Selects all options
});
But i need select only search results. Thanks.
Upvotes: 0
Views: 2861