I am trying to refresh the page on click function.
reloadPage(){
this._$window.location.reload();
this._$window.onbeforeunload = null;
}
Above code is working fine in Chrome and IE. But in Firefox getting prompt message saying this page is asking you to confirm that you want to leave - data you have entered may not be saved.
How to prevent this in Firefox?
Note: Without Jquery.