I found many questions of this type, but none helped.
Most of them give solution of using following code:
window.onbeforeunload = null;
My issue is when I type something in search box and press enter, jQuery function run which redirect to another url. but before redirect alert box come -> "Do you want to leave this site? Changes that you made may not be saved."
Here is my jquery code
<input type="text" placeholder="Search" value="" id="SearchBox" />
$('#SearchBox').keypress(function (e) {
if (e.which == 13) {
var search = $('#SearchBox').val();
window.onbeforeunload = null;
window.location.href = 'https://redirecturl';
}
});