|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Disable Back Button....
Is there a way to disable the Back Button from IE browser?
I could have sworn I have seen this done in some sites, but not sure how this would be implemented. |
|
#2
|
|||
|
|||
|
RE: Disable Back Button....
Here is a code that can help u..
Code:
<html>
<head>
<script language="javascript">
function chgButtonState(){
if(document.form1.btn1.disabled){
document.form1.btn1.disabled=false;
document.form1.btn2.value="Disable";
}
else{
document.form1.btn1.disabled=true;
document.form1.btn2.value="Enable";
}
}
</script>
</head>
<body>
<form name="form1">
<input type="button" name="btn1" value="My Button" disabled>
<input type="button" name="btn2" value="Enable" onClick="chgButtonState()">
</form>
</body>
</html>
|
|
#3
|
|||
|
|||
|
RE: Disable Back Button....
I am not sure if you understood what I am trying to do. I am trying to figure out how to disable the BACK button in Internet Explorer so what when the user navigates the pages, they can't click back.
|
|
#4
|
|||
|
|||
|
RE: Disable Back Button....
You cannot disable the "Back" button. Trust me I have tried....
|
|
#5
|
|||
|
|||
|
RE: Disable Back Button....
you can disable the toolbar which contains the back button, in a popup window...
|
|
#6
|
|||
|
|||
|
RE: Disable Back Button....
My bad.. Maybe I should read the post more carefully..
|
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Disable Back Button.... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|