Sunday, May 1, 2011

How to disable Back button in IE and firefox?

Duplicate:


I have to disable back and forward button of browser ( IE and Firefox both ). I have tried:

//disable back button
window.onbeforeunload= function() { } 
window.history.forward(1);

but this works only in IE.
Is there any foolproof solution?

From stackoverflow

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.