Jul 11, 2005 #1 Cenedra Programmer Joined Jan 2, 2003 Messages 114 Location US I want to do some processing on my site if they close out of the browser; how can I capture this? Thanks for your help in advance
I want to do some processing on my site if they close out of the browser; how can I capture this? Thanks for your help in advance
Jul 11, 2005 #2 13sio Technical User Joined May 21, 2003 Messages 141 Location MO Try onunload, e.g. Code: <body onunload="alert('dont leave me alone');"> </body> Upvote 0 Downvote