Answers for "select2 unselect item"

1

select2 destroy

if ($('#mySelect2').hasClass("select2-hidden-accessible")) {
    // Select2 has been initialized
    $('#mySelect2').select2('destroy');
}
Posted by: Guest on May-27-2020
3

select2 preselect option

$('#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 November-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language