Jul 11, 2005 #1 Cenedra Programmer Jan 2, 2003 114 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 May 21, 2003 141 MO Try onunload, e.g. Code: <body onunload="alert('dont leave me alone');"> </body> Upvote 0 Downvote