New Version 4.0.x is available

Javascript image dropdown Download

Documentation
 
  • child widtth can be alter.
  • New multiple is introduced. Its multiple but with the checkbox.
  • Bonus: elementname_mscheck will be posted along with the form post/get. i.e. if element name is "tech" checkbox tech_mscheck[] is created. However you can set the suffix using 'checkboxNameSuffix' parameter. Submit to check the result.
 
 
 
Source Code:
<script>
$(document).ready(function(e) {
	$("#tech").msDropdown({childWidth:"250px",enableCheckbox:true});
    //element's data-enablecheckbox="true" can also work for checkbox enabled dropdown. and data-childwidth can be used for seting child width
});
</script>