Last active
February 26, 2019 03:23
-
-
Save piotrkubisa/4ea4664519a83d7fb073 to your computer and use it in GitHub Desktop.
Prevent redirecting JS feature. Packed in user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name noRedirect | |
// @namespace https://gist.github.com/piqus/4ea4664519a83d7fb073 | |
// @version 0.1 | |
// @description Prevent redirecting JS feature. Packed in user.js | |
// @match * | |
// @copyright 2014+, Piotr Kubisa | |
/// @link: http://stackoverflow.com/questions/5225964/jquery-disable-all-redirections-links-form-submissions-window-location-change | |
// ==/UserScript== | |
window.onbeforeunload = function(e){ | |
var e = e || window.event; | |
// For IE and Firefox (prior to 4) | |
if (e){ | |
e.returnValue = 'Do you want to leave this page?'; | |
} | |
// For Safari and Chrome | |
return "Do you want to leave this page?"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment