How to Disable the browser back button of JSF page
Hi,
I want to disable the back button of a browser, like even if the user clicks the back button of the page he should not navigate to the previous page, he should be in same page only i tried with
<script language="javaScript">
history.go(1);
</script>
But it is not working, when the user clicks the back button it is going to the previous page, Please help me on the same.
Thanks in Advance
Abraham