I'm trying to make an img disappear with an onmouseover event and then I would like that img to reappear with an onmouseout event Here's what i have so far:
<body>
<h1>Catch the Easter Bunny to get your egg!</h1>
<img src="images/rabbit.png" id="rabbit1" onmouseover=""
onmouseout="show(this);" alt="Catch the rabbit"/>
<img src="images/rabbit.png" id="rabbit2" onmouseover="hide(this);"
onmouseout="show(this);" alt="Catch the rabbit"/>
<img src="images/rabbit.png" id="rabbit3" onmouseover="hide(this)" alt="Catch the rabbit"/>
<img src="images/rabbit.png" id="rabbit4" onmouseover="hide(this)" alt="Catch the rabbit"/>
<h2 id="noeggs">No Easter Eggs for You</h2>
<h2 id="yousuck">Humans suck!!!</h2>
</body>
var count = 0;
function hide(node) {
count += 1;
node.style.visibility = 'hidden';
}
function show(node) {
node.style.visibility = 'visible';
}
try using opacity
node.style.opacity=0;
or
node.style.display='none';