View Single Post
Old 01-23-2013, 09:58 PM   PM User | #1
pnlbuck
New to the CF scene

 
Join Date: Jan 2013
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
pnlbuck is an unknown quantity at this point
Delete cookies after onbeforeunload

I am trying to delete cookies after a person leaves the page or refreshes. I am pretty new at this. Anyone got a working script?


<script language="JavaScript">
window.onbeforeunload = confirmExit;
function confirmExit()
{
return "You have attempted to leave this page. If you have made any changes to the fields without clicking the Save button, your changes will be lost. Are you sure you want to exit this page?";
}
</script>
pnlbuck is offline   Reply With Quote