How to execute ajax function onbeforeunload?
问题 I\'m developing a php/javascript chat. When the user logs in, his/her username is inserted in a MySQL table called queue . This insert returns the mysql_insert_id() that will be stored in a session variable called $_SESSION[\'CHAT_QUEUE_ID\'] I need the MySQL table row to be deleted when the user closes the page. I tried the following, but without success: js file window.onbeforeunload = closeSession; function closeSession(){ $.ajax({ url: \"/chat/process/chat.php\", type: \"GET\" }); return