Search code examples
jquerymulti-selectbootstrap-multiselect

Auto Dropdown On Load davidstutz bootstrap multiselect


The select plugin I am using is David Stutz Bootstrap Multiselect

I am loading the select field through ajax/jquery and it works great but I am struggling to get the select field to initiate the dropdown event on load.

Is this possible to do with this plugin?


Solution

  • After a little playing about you can do something like this:

    $('#namehere').multiselect({
            onInitialized: function(select, container) {
                $(container).addClass('open');
            }
    });