|
|
Back Button Disabled - Javascript
|
Views : 365
|
|
Tagged in : Javascript
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
*****************************************hst1.php******************************
<html>
<head>
<title>Disable Back Button in Browser</title>
<script type="text/javascript">
window.history.forward();
function noBack()
{
window.history.forward();
}
</script>
</head>
<body onload="noBack();" onpageshow="if (event.persisted) noBack();" onunload="">
<p>When ever you have to be click the link back button will be dissabled.
</p>
</body>
</html>
*******************************************************************************
***********************************hst2.php************************************
<html>
<body>
<h1><center>This Page will be disabled for Back button </center></h1>
</body>
</html>
******************************************************************************** |
|
By Prabakaran, On - 2010-11-01 |
|
|
|