I want to update database when user leave the site. I am using php for my site. I am using javascript function onbeforeunload and call php through ajax to update database.
Now the problem is that the function onbeforeunload is not supported by Opera and Safari, and so the entry should be deleted from database is still over their and affect my database and site.
Any idea or suggestion what i can do?
OnBeforeUnloadis supported in Safari – what is not supported is the use of AJAX … you need to use a Synchronous call – you can usealertto verify this…..