Example 17:

This example show you how to:

  • Load the plugin
  • Load mSelect using an other supported Language

HTML:
<select id="country_id" class="mSelect" multiple="multiple"></select>
JS:
$(function () {
    $('#country_id').mSelect({
        url: 'ajax/example1.php',
        lang: 'ja' // load Japanese
    });
});