Answers for "select html clear options"

4

select2 clear options

Remove the selected options : 
-----------------------------
$('#mySelect2').val(null).trigger('change');

============================================

Completly remove the select2 initialization :
--------------------------------------------
$('#payment_method').html('').select2({data: [{id: '', text: ''}]});
Posted by: Guest on July-30-2020
0

Clear ComboBox selected text

comboBox1.SelectedIndex = -1;
Posted by: Guest on February-22-2021

Browse Popular Code Answers by Language