Hi how do I use jQuery to show a Jquery mutliselect based on a checkbox option, here is my codes
//html
<input type="checkbox" value= "checkbox1" name="checkbox1">
<select id="dropdown" name="dropdown" multiple="multiple">
<option id="item"></option>
</select>
//jQuery
$("#checkbox").change(function(){
$('#dropdown').multipleSelect();