Answers for "html select remove all options"

3

remove all options from select jquery

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

Alll select options unselectable

<div 
 style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;" 
 unselectable="on"
 onselectstart="return false;" 
 onmousedown="return false;">
    Blabla
</div>
Posted by: Guest on May-27-2021

Code answers related to "html select remove all options"

Code answers related to "Javascript"

Browse Popular Code Answers by Language