Current selected value option under dropdown not working
-
I would like to know how to have the selected option value under dropdown after selecting it, because whenever I’m selecting any option, it gets deleted and comes beneath the dropdown option with a link. When you click it, it is going back to the dropdown menu. Code before selection
<div class="column-filter-widget"> <select class="widget-0"> <option value="">Healthy Life</option> <option value="Fruit">Fruit</option> <option value="Vegetable">Vegetable</option> <option value="Beef">Beef</option> </select>
HTML Code after selecting option as “Fruit”
<div class=”column-filter-widget”>
<select class=”widget-0″>
<option value=””>Healthy Life</option>
<option value=”Vegetable”>Vegetable</option>
<option value=”Beef”>Beef</option>
</select>Fruit
</div>How to solve this?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Current selected value option under dropdown not working’ is closed to new replies.