I have this jquery:
$(window).bind('beforeunload', function () {
return 'Are you sure you want to leave?';
});
that alerts before leaving page like:
How can I change the the words "Leave this page" and "Stay on this page"?
I have this jquery:
$(window).bind('beforeunload', function () {
return 'Are you sure you want to leave?';
});
that alerts before leaving page like:
How can I change the the words "Leave this page" and "Stay on this page"?