I have a SL that redirects back to itself with new...
# suitescript
a
I have a SL that redirects back to itself with new params in the url when i click a button and I keep getting this message when i click the button. Is there any way to suppress it?
i
This will help
a
thanks
👍 1
s
you can also do this with on the client side with suitescript... add this to your pageinit
Copy code
function pageInit(scriptContext) {
		window.onbeforeunload = function () {
			return null;
		};
	}
👍 1