How to prevent the "Confirm Form Resubmission" dialog? How to prevent the "Confirm Form Resubmission" dialog? codeigniter codeigniter

How to prevent the "Confirm Form Resubmission" dialog?


This method works for me well and I think the simplest way to do this is to use this javascript code inside the reloaded page's HTML.

if ( window.history.replaceState ) {  window.history.replaceState( null, null, window.location.href );}