Forum Moderators: open
e.g.
<FRAMESET border=0
frameSpacing=0 rows=100%,* frameBorder=no SCROLLING="no">
<FRAME src="displaythis.html" frameBorder=0 SCROLLING=auto BORDER=0>
</FRAMESET>
<noframes>
<body>etc...</body>
</noframes>
I want a popup on exit, however, the <body> tag only appears in the noframes section so how can this be done to be in the frameset section?
For example: <FRAMESET border="0" onunload="javascript:...." rows="100%,*" frameBorder="no" SCROLLING="no">
Two things to note:
1. You need quotes around the values of each attribute.
2. rows="100%,*" seems strange. You don't have a second frame, and even if you did, no one would be able to see it as your first frame takes up 100% of the window. Why is this a frameset at all?
Shawn