can this “error” be by-passed in server side scripts somehow?
z
Zack
02/20/2020, 5:17 PM
@mtsb Can you check when it is firing? I don’t think you can change it server side, but I know you can bypass the “are you sure you want to reload? message with this piece of code
Copy code
if (window.onbeforeunload) {
window.onbeforeunload = function () { null; };
};