disbable back option by java script
Answers were Sorted based on User's Feedback
Answer / makya
window.history.go(+1) use in java script;
or
onunload =window.history.go(-1) in body tag
Is This Answer Correct ? | 12 Yes | 6 No |
Answer / bharat
These codes are not suitable for disable Browsers back
button and Back Button on Mouse Right Click.
please write the code.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / gnana prakash
we can disable the right click using
<body oncontextmenu="return false">
</body>
Is This Answer Correct ? | 2 Yes | 2 No |
Answer / gayathiri p
This code is correct for disable Back Button
<html>
<body onkeydown="if (event.keyCode==8) {event.keyCode=0;
return event.keyCode }">
</body>
</html>
Is This Answer Correct ? | 2 Yes | 7 No |
What are the types used in javascript?
How to convert a string to a number using javascript?
What is meant by vanilla javascript?
Is javascript or python easier?
What would be the result of 3+2+”7″?
Can I declare a variable as CONSTANT in JavaScript?
List some data types supported by javascript?
Where can I learn javascript for beginners?
What is a name function in javascript & how to define it?
What is triple dot in javascript?
What is the similarity between the 1st and 2nd statement?
What is javascript tree shaking?