Guest User

Untitled

a guest
May 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if (typeof(window.event)!='undefined')//ie
  2. {document.onkeydown=function()
  3. {var tag_name=event.srcElement.tagName.toUpperCase();
  4. if (tag_name!='INPUT' && tag_name!='TEXTAREA')
  5. {return event.keyCode!=8;
  6. }
  7. };
  8. }
  9. else //firefox, chrome
  10. {window.addEventListener('keydown',function(evt){if (evt.keyCode==8){evt.preventDefault();}}, true);
  11. }
Add Comment
Please, Sign In to add comment