I want to use Tom-Select.js to extend a select element (eg. for custom item rendering). The selectbox should be empty on load as no option is selected. However Tom always shows the first option in the list as selected on start (can be removed later). How can i make tom select to start with an empty select box?
new TomSelect('#ex-dropdown-input',{
plugins: ['dropdown_input', 'remove_button'],
allowEmptyOption:true,
});
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/tom-select.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/tom-select.complete.min.js"></script>
<select id="ex-dropdown-input" autocomplete="off" placeholder="How cool is this?">
<option>amazing</option>
<option>awesome</option>
<option>cool</option>
<option>excellent</option>
<option>great</option>
<option>neat</option>
<option>superb</option>
<option>wonderful</option>
</select>
Add option values to select element and the first option need to have same text of the placeholder and empty value
and delete
you can also use select.clear if you dont want to add the empty option :
tom-select with empty option (the recommended way):
tom-select with clear and without empty option (not recomended because you need to check if the select is selected for update section before clearing the select):