Sunday, 1 November 2015

Javascript to alert on window web closure

Here is a code to alert the user on window closure or tab closure in web browser.

function setConfirmUnload(on) {
            window.onbeforeunload = (on) ? unloadMessage : null;
        }

        function unloadMessage() {
            return "Are you sure you want to leave this page without saving your details? Please click the save button at the bottom of the page.";
        }

        window.onload = function () {
            setConfirmUnload(true);
        }



Avast logo
This email has been checked for viruses by Avast antivirus software.
www.avast.com

No comments:

Post a Comment