
March 14th, 2006, 07:05 PM
|
|
Contributing User
|
|
Join Date: Mar 2004
Posts: 110

Time spent in forums: 1 Day 1 h 9 m
Reputation Power: 10
|
|
|
Visible Divs on mouseover
On my site i'm trying to make a div show on mouseover of another and hide when on mouseout. on mouseover I'm calling this function
Code:
function tongle_on(id)
{
document.getElementById(id).style.display='block';
}
and on mouseout im calling this function
Code:
function tongle_off(id)
{
document.getElementById(id).style.display='none';
}
The problem is that it sometimes works and sometimes doesn't. The page I'm using it on is located here
Hedonist
Thanks for any help.
|