$("#yourSelectId").mSelect( { "dropDownHeight": an integer, // defualt is 200 (in pixles) "popUpHeight": an integer, // defualt is 200 (in pixles) "placeholder": "Any text" // defualt will use the option with no value or 0 value } );
$("#yourSelectId").mSelect('destroy');
// Example of modifying your original select listbox, and then updating mSelect $("#yourSelectListbox") .append("<option value='newOption'>New Option</option>") .mSelect();
$("#yourSelectId").mSelect( { onAfterChange: function() { // add your function here } } );
$("#yourSelectId").mSelect( { "readonly":1, // must be 1 in order for it to be readonly "readonlyMinWidth": an integer // default is 300 pixels } );