Side navigation
Ticket #4656: mouseover.html
File mouseover.html, 0.6 KB (added by orzech, May 14, 2009 03:03PM UTC)
example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
div{
border:1px solid #000;
padding:30px;
background:#eee;
}
</style>
<body bgcolor="#eeeeee">
<div onMouseover="document.getElementById('l2').style.display='block'" onMouseout="document.getElementById('l2').style.display='none'">
First level - mouse over me
<div id="l2" style="display:none">
Second level
<input type="button" value="disabled button" disabled="disabled" />
<input type="button" value="enabled button" />
</div>
</div>
</body>
</html>
Download in other formats:
Original Format
File mouseover.html, 0.6 KB (added by orzech, May 14, 2009 03:03PM UTC)
example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
div{
border:1px solid #000;
padding:30px;
background:#eee;
}
</style>
<body bgcolor="#eeeeee">
<div onMouseover="document.getElementById('l2').style.display='block'" onMouseout="document.getElementById('l2').style.display='none'">
First level - mouse over me
<div id="l2" style="display:none">
Second level
<input type="button" value="disabled button" disabled="disabled" />
<input type="button" value="enabled button" />
</div>
</div>
</body>
</html>