Cut and paste this snippet into your the <HEAD> of your HTML document
to make IE ignore the backspace.

&lt;script language="JavaScript"&gt;&lt;!--
function mykeyhandler() {
   if (window.event && window.event.keyCode == 8) { // ignore the
   backspace
      window.event.cancelBubble = true;
      window.event.returnValue = false;
      return false;
   }
}

document.onkeydown = mykeyhandler;
//--&gt;&lt;/script&gt;

Reply via email to