jquery to set value in select2 dropdown button
$("#u20_cre").select2().val(["1","6"]).trigger("change");
jquery to set value in select2 dropdown button
$("#u20_cre").select2().val(["1","6"]).trigger("change");
how to set selected value in multiselect dropdown using jquery
I hope this will help you:
Demo
$(document).ready(function() {
$("select").multiselect({
selectedText: "# of # selected"
});
var hidValue = $("#hidSelectedOptions").val();
alert(hidValue);
var selectedOptions = hidValue.split(",");
for(var i in selectedOptions) {
var optionVal = selectedOptions[i];
$("select").find("option[value="+optionVal+"]").prop("selected", "selected");
}
$("select").multiselect('reload');
});
EDIT
refresh has been removed from latest jQuery-MultiSelect. Using reload will solve the question now.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us