Example 10:

This example show you how to:

  • Load the plugin
  • Allow only Single select for the rows

HTML :
<select id="country_id" class="mSelect" multiple="multiple"></select>
JS :
$(function () {
    $('#country_id').mSelect({
        url: 'ajax/example4.php',
        selectType: 'single' // allow only single select for the rows
    });
});