jquery - Limit with Chosen.js dropdown -
i used chosen.js
, have multiple selection dropdown. want limit of 4 selection multiple alternative alert message.
i tried normal dropdown it`s work fine chosen.js it's not work.
there inbuilt alternative $(".chzn-select").chosen({ max_selected_options: 4 });
not given alert message when reach maximum limit.
how set limit of maximum 4 alternative chosen.js?
there event gets triggered when max_selected_options
reached can utilize like
$('.chzn-select').on('chosen:maxselected', function(obj) { do_something(); });
i havent tested this.
documentation here
jquery jquery-chosen
No comments:
Post a Comment