Showing posts with label Internet Explorer. Show all posts
Showing posts with label Internet Explorer. Show all posts

Sunday, June 28, 2009

Disabled Back Button

Hi, this simple code can prevent the back button of internet explorer to back in previous page.


function Back()
{ window.history.forward(); }
setTimeout("Back()", 0);
window.onunload = function() { null };