Answers for "Select options of Select2 control based on values using Jquery"

2

Select options of Select2 control based on values using Jquery

$('#mySelect2').val('1'); // Select the option with a value of '1'
$('#mySelect2').trigger('change'); // Notify any JS components that the value changed
Posted by: Guest on September-16-2021
1

Select options of Select2 control based on values using Jquery

$('#mySelect2').val(['1', '2']);
$('#mySelect2').trigger('change'); // Notify any JS components that the value changed
Posted by: Guest on September-16-2021

Code answers related to "Select options of Select2 control based on values using Jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language