disbable back option by java script

Answers were Sorted based on User's Feedback



disbable back option by java script..

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

disbable back option by java script..

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

disbable back option by java script..

Answer / sree ramanjaneya

Thanks to..Makya
and Gayathiri P

Is This Answer Correct ?    1 Yes 1 No

disbable back option by java script..

Answer / gnana prakash

we can disable the right click using

<body oncontextmenu="return false">
</body>

Is This Answer Correct ?    2 Yes 2 No

disbable back option by java script..

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

Post New Answer

More JavaScript Interview Questions

Is javascript enabled on chrome?

0 Answers  


What is lazy loading in javascript?

0 Answers  


How to make a function in javascript?

0 Answers  


How do I open javascript console?

0 Answers  


java is pure object oriented or not?

4 Answers  






What is the difference between firstChild and firstElementChild?

0 Answers  


How to create 3-dimensional Array in Javascript?

3 Answers   CybAge, Shapia,


Which built-in method sorts the elements of an array?

0 Answers  


What is null variable?

0 Answers  


What is var and let in javascript?

0 Answers  


why java is called platform independent?

1 Answers  


Why typeof null is object?

0 Answers  


Categories