pilsjart
07-28-2002, 07:59 PM
I'm using an: onMouseOver with frames:
<frame src="page1.htm" onMouseOver="doThis(1)">
<frame src="page2.htm" onMouseOver="doThis(2)">
It works fine with IE:Windows but it doesn't work at all with IE:Mac
Any ideas?
Thank you very much
..................................
pilsjart
07-29-2002, 01:01 PM
please, I need some help with this.
Still no ideas?
thank you!
brothercake
07-29-2002, 01:16 PM
There is no onmouseover for the frame element; it's not a valid event. If it works in win/ie then you're lucky.
What's the bottom line - what does doThis do?
Zvona
07-29-2002, 03:10 PM
Originally posted by pilsjart
I'm using an: onMouseOver with frames:
<frame src="page1.htm" onMouseOver="doThis(1)">
<frame src="page2.htm" onMouseOver="doThis(2)">
It works fine with IE:Windows but it doesn't work at all with IE:Mac
Any ideas?
Thank you very much
..................................
You should include mouseover events to page1.htm's and page2.htm's body elements. Thus, they should work properly.
Note : though capital letter's do not affect on HTML, both XHTML and XML and most scripting languages are case sensitive. This means, one should write events with lower-case letters. For instance onmouseover instead of onMouseOver, etc.