hi
could you please tell me how to change "none selected" text?
i can't find it from the issues.
The option is nonSelectedText.
Hi, is it possible to have the text of the first child as the nonSelectedText for each corresponding multiselect? For example here you would have a none selected text as Apple
<select>
<option>Apple</option>
<option>Pear</option>
<option>Banana</option>
</select>
$(document).ready(function() {
$('#id').multiselect({ nonSelectedText:'Apple'});
});
Most helpful comment
The option is
nonSelectedText.