chris_angell
09-27-2002, 04:48 PM
ok, this is hard to explain,
I want a div to become visible.. people when on the div it stays visible and when you roll off the div it says to hide it,
which is all fine, but the problem I have got is in the div is an iframe, so as soon as you roll over the iframe within the div, the machine thinks you have rolled out of the div, is there anything I can to prevent this.. ??????
here is a a simple way to explain in a simple code way
<head>
function portfoliowatch(){
portfolioLyr.style.visibility="hidden"
}
</head>
<body>
<a onClick="portfolioLyr.style.visibility="visible">show division</a>
<div id="portfolio" onmouseout="portfoliowatch()">
<iframe NAME="portfolio" WIDTH="388" HEIGHT="283" src="page"></iframe>
</div>
I want a div to become visible.. people when on the div it stays visible and when you roll off the div it says to hide it,
which is all fine, but the problem I have got is in the div is an iframe, so as soon as you roll over the iframe within the div, the machine thinks you have rolled out of the div, is there anything I can to prevent this.. ??????
here is a a simple way to explain in a simple code way
<head>
function portfoliowatch(){
portfolioLyr.style.visibility="hidden"
}
</head>
<body>
<a onClick="portfolioLyr.style.visibility="visible">show division</a>
<div id="portfolio" onmouseout="portfoliowatch()">
<iframe NAME="portfolio" WIDTH="388" HEIGHT="283" src="page"></iframe>
</div>