سؤال وجواب

طلب كود php ينفذ عملية عند مغادرة ال


طلب كود php ينفذ عملية عند مغادرة الزائر لصفحة الموقع؟

تستطيع ذلك عبر استخدام الجافا سكربت باستخدام هذا الحدث onbeforeunload  

مثال

<****** 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?"; }