I have a simple dropdown
<select >
<option value="" disabled selected>Choose your option</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
The values in it can reach upto 50, i want to add load more facility (something like this) inside the select tag, but the issue is it is not picking anchor tag inside the option tag
I tried to use this code but on selecting show more, the dropdown is getting closed.
Can anyone please tell how this feature can be obtained