Guest Edson Tiago Posted April 11, 2005 Report Share Posted April 11, 2005 Alguém sabe como faço para bloquear o botão backspace do teclado, me disseram q é em JavaScript...alguém pode me ajudar???Valeu,AT+ Quote Link to comment Share on other sites More sharing options...
0 Guest Edson Tiago Posted April 11, 2005 Report Share Posted April 11, 2005 achei pessoal, ai vai para quem interessar:function mykeyhandler() { if (window.event && window.event.keyCode == 8) { // try to cancel the backspace window.event.cancelBubble = true; window.event.returnValue = false; return false; }}document.onkeydown = mykeyhandler;</script> Quote Link to comment Share on other sites More sharing options...
0 olimpia Posted April 11, 2005 Report Share Posted April 11, 2005 se não me engano este script so funciona no IE Quote Link to comment Share on other sites More sharing options...
Question
Guest Edson Tiago
Alguém sabe como faço para bloquear o botão backspace do teclado, me disseram q é em JavaScript...alguém pode me ajudar???
Valeu,
AT+
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.