Answers for "how to remove all value in select option using jquery"

4

remove all options from select jquery

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

jquery remove option from select by value

$("#FIELDID option[value='X']").remove();
Posted by: Guest on February-27-2020

Code answers related to "how to remove all value in select option using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language