How to use the hover drop down? I want to display the value when I click the selection. For example if I click on 2, the word "Number" will become two. I can't find how to use it as I don't know the key word.
Can be this done by hover drop down menu? Or there are other ways? Thanks.
Here is the code I found.
<div class="dropdown">
<button class="dropbtn" id="drop1" >Number</button>
<div class="dropdown-content">
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
</div>
</div>