I run several blogs and would like to welcome new visitors with a :hoover div DHTML Layer that contains my
video greating and adsense code.
Somebody knows how to do that ?
all help greatly apretiated!
idea:
<div style="width: 80px; height: 20px; background-color: red;"
onmouseover="document.getElementById('div1').style.display = 'block';">
<div id="div1" style="display: none;">Text</div>
</div>or listen for the mouseout event if you want the div to disappear when the mouse leaves the container div:
onmouseout="document.getElementById('div1').style.display = 'none';"