Skip to content

Instantly share code, notes, and snippets.

@rpechayr
Created March 2, 2012 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rpechayr/1960398 to your computer and use it in GitHub Desktop.
Save rpechayr/1960398 to your computer and use it in GitHub Desktop.
Safari onbeforeunload bug
<script>
window.onbeforeunload = function (e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'Any string';
}
// For Safari
return 'Any string';
};
</script>
<a href="http://www.google.fr"> google </a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment