<html>
<head>
<style>
h1
{
width:400;
}
</style>
<script type="text/javascript">
var i
function gloei()
{
i=0
interval=setInterval("gagloei()",10)
}
function terug()
{
clearInterval(interval)
document.getElementById('myHeader').style.filter=false
}
function gagloei()
{
i++
if (i<5)
{
document.getElementById('myHeader').style.filter="glow(strength=" + i + ")"
}
else if (window.interval)
{
clearInterval(interval)
}
}
</script>
</head>
<body>
<h1 id="myHeader" onmouseover="gloei()" onmouseout="terug()">Ga met de muis hierover</h1>
</body>
</html>
<html>
<head>
<style>
h1
{
width:400;
}
</style>
<script type="text/javascript">
var i
function gloei()
{
i=0
interval=setInterval("gagloei()",10)
}
function terug()
{
clearInterval(interval)
document.getElementById('myHeader').style.filter=false
}
function gagloei()
{
i++
if (i<5)
{
document.getElementById('myHeader').style.filter="glow(strength=" + i + ")"
}
else if (window.interval)
{
clearInterval(interval)
}
}
</script>
</head>
<body>
<h1 id="myHeader" onmouseover="gloei()" onmouseout="terug()">Ga met de muis hierover</h1>
</body>
</html>