Mel wrote on 16 feb 2006 in comp.infosystems.
www.authoring.stylesheets: i like to place an image link on my page that stays up for 2 seconds
and user can interact with. if no interaction in 2 seconds the image
and the link should disapear
Not very nice to the user.
Beter follow up in a javascript group. CSS as such is static.
<script type='text/javascript'>
function thatSmean(){
document.getElementById('myImgLink').style.display ='none'
}
</script>
<body onload='setTimeout("thatSmean()",2000)'>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)