Pages

About Me

My photo
ForEach(Minute in MyLife) MyExperience ++;

Thursday, July 28, 2011

Disable back key in browser

Add this script inside head tag in html page 

<script type = "text/javascript" >
   function preventBack(){window.history.forward();}
    setTimeout("preventBack()", 0);
    window.onunload=function(){null};
</script

No comments:

Post a Comment