Is it possible to leave page instead of prompting a default alert box but just appending a message in html page as alert box cannot be read by screen readers like ChromeVox?
$(window).bind("beforeunload",function() {
    $(window).unload(function() {
        return 'Are you sure to leave page?';
    });
});