Hello there,
I have this problem... basically I have a popup <div> tag which contains a heading, paragraph, floating divs and link lists - a sort of large menu pop up area... Anyway, I basically wanted to put a hide function onto the main <div> tag so that when you rollout of it it dissappears... but as soon as you rollover anything within it it also dissappears...
I have this script
function hideBox(div)
{
divObj = document.getElementById(div);
divObj.style.display = 'none';
}
This calls it on the <div> itself
<div class="popupBox" id="popupDirectory" onMouseOut="hideBox('popupDirectory');">
I have been trying to fix this for a couple of days but just no luck. I found this on a webpage But I dont know if this would fix it or how to integrate it into my code - whatever I have tried has sadly just not worked or errored ...
As you can see, any help would be so so much appreciated in getting this to work...
Many thanks in advance,
Gia
I have this problem... basically I have a popup <div> tag which contains a heading, paragraph, floating divs and link lists - a sort of large menu pop up area... Anyway, I basically wanted to put a hide function onto the main <div> tag so that when you rollout of it it dissappears... but as soon as you rollover anything within it it also dissappears...
I have this script
function hideBox(div)
{
divObj = document.getElementById(div);
divObj.style.display = 'none';
}
This calls it on the <div> itself
<div class="popupBox" id="popupDirectory" onMouseOut="hideBox('popupDirectory');">
I have been trying to fix this for a couple of days but just no luck. I found this on a webpage But I dont know if this would fix it or how to integrate it into my code - whatever I have tried has sadly just not worked or errored ...
As you can see, any help would be so so much appreciated in getting this to work...
Many thanks in advance,
Gia