I've successfully created a dropdown menu featuring animals. Now, what I'm aiming to do is, once I select an animal from the dropdown, can I make a checkbox button 'appear'? Essentially, I want it to be hidden initially, and then once I choose an animal and click on it, the checkbox button will become visible.
Currently, my code only pertains to the dropdown menu...
<li><a href="#"
onmouseover="mopen('m1')"
onmouseout="mclosetime()">animals</a>
<div id="m1"
onmouseover="mcancelclosetime()"
onmouseout="mclosetime()">
<a href="#">Dogs</a>
<a href="#">Cats</a>
<a href="#">Cow</a>
<a href="#">Goats</a>
<a href="#">Tiger</a>
</div>
</li>
Seeking assistance, thank you!