Web Analytics Made Easy -
StatCounter disable BACKSPACE button - CodingForum

Announcement

Collapse
No announcement yet.

disable BACKSPACE button

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • disable BACKSPACE button

    Hi,

    Is there any javascript to disable on pressing the BACKSPACE button on the keyboard. Something like disable the Right Click.

  • #2
    <head>
    <script>
    function key(e) {
    var k =
    document.layers ? e.which :
    document.all ? event.keyCode :
    document.getElementById ? e.keyCode : 0;
    if (k==8) {
    return false;
    }
    }
    </script>
    </head>
    <body onkeydown="return key(event);">
    </body>

    Comment

    Working...
    X