Posts: 34
Name: Dima
Location: Toronto, Canada
|
I am a little confused here what are u trying to do but I think the problem is with your 'A' DOM elements inside the DIV.
What hapends is that u have mouseout event on your DIV and when u mouse over on A element mouseout fires on DIV even that A tag located inside the DIV.
The easies way what u can do is to define event for the A tag on mouseover and cacel all of the following events.
set <a mosuseover="test(event)">Contact</a>
test = function(event) {
if(event.preventDefault)
event.preventDefault();
else
event.returnValue = false;
}
|