Answers for "select2 dropdown selected value jquery"

0

jquery to set value in select2 dropdown button

$("#u20_cre").select2().val(["1","6"]).trigger("change");
Posted by: Guest on January-09-2021
3

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

Code answers related to "select2 dropdown selected value jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language