Answers for "clear selected selectize"

20

reset select style css

<select>
  <option value="" selected disabled hidden>Choose here</option>
  <option value="1">One</option>
  <option value="2">Two</option>
  <option value="3">Three</option>
  <option value="4">Four</option>
  <option value="5">Five</option>
</select>
Posted by: Guest on May-03-2020
1

select2 clear selected

$("#mySelect2").select2({
    placeholder: "Select a State",
    allowClear: true
});
Posted by: Guest on November-05-2021

Code answers related to "clear selected selectize"

Browse Popular Code Answers by Language