| Javascript OPEN ON EXIT
|
lizzie

msg:1475285 | 4:09 pm on May 11, 2001 (gmt 0) | I want to use a javascript that opens a new page when someone exits my page. Does anyone have one they can share with me? Thanks!
|
tedster

msg:1475286 | 4:35 am on May 12, 2001 (gmt 0) | lizzie, use the onUnload event handler, which must be placed in either the BODY tag or the FRAMESET tag. | <BODY onUnload="window.open(url,windowname,features)"> |
| Use single quotes around your url, windowname and whatever features list (if any) you declare for the new window. Here's a page of FAQ's [developer.irt.org] all about javascript windows. Lot's of additional info here.
|
|
|