Answers for "clear select options jquery"

3

remove all options from select jquery

$('#mySelect')
    .empty()
Posted by: Guest on March-18-2020
1

jquery clear select 2

$('select2element').val(null).trigger("change")
Posted by: Guest on April-12-2021
1

jquery select clear options

$('#mySelect')
    .find('option')
    .remove()
    .end()
    .append('<option value="whatever">text</option>')
    .val('whatever')
;
Posted by: Guest on April-15-2021
0

reset select form jquery

$('select').each( function() {
        $(this).val( $(this).find("option[selected]").val() );
    });
Posted by: Guest on July-30-2020

Code answers related to "clear select options jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language