I am trying to make it so that when i mouse over where this button is, it appears.
here is my code
html:
<div class="hide"><button type="button" onmouseover="appear()" id="button">LIGHT!!</button></div>
css:
div.appear {display: none;}
javascript:
function appear(){document.getElementById("button").style.display = "block";}