Skip to main content

Posts

Showing posts with the label multi select

How to use Multi-Select Dropdown List in html select input using Jquery in JSP page with limited selections ?

Below Code Snippet shows Selecting Multiple Values $(document).ready(function() { $("#multiselect").dropdownchecklist( { onItemClick: function(checkbox, selector){ var justChecked = checkbox.prop("checked"); var checkCount = (justChecked) ? 1 : -1; for( i = 0; i 3 ) { alert( "Limit is 3 fruits to choose" ); throw "too many"; } },width: 250 }); });  Below code index.jsp page with jquery javascript, css, Ui, codes are imported Multiple Select Example Jquery Select Fruits Apple Mango Orange Strawberry Banana Output Page: