Sorry Denny, perhaps I wasn't making myself clear. What I mean is not to use <iframe onmouseover = "aFunction()">, but to use the actual body element of the iframe source document to call an onmouseover, in turn calling a function from either within the iframe source document, or from the main page (where the menu itself is contained).
As for whther or not there is an onmouseover event for the iframe tag, there actually is. I've just experimented with the following and it worked fine in IE6:
<html>
<head>
<title>IFR Onmousover Test</title>
</head>
<body>
<iframe src = "ifr.html" onmouseover = "alert('Hello World!')">Nothing to Display</iframe>
</body>
</html>
It may be that there are problems validating the markup, if this is the case you may have to write your own DTD to cope with any errors you might get.
Hope this helps
Joe
|