mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-16 09:34:39 +00:00
6 lines
177 B
JavaScript
6 lines
177 B
JavaScript
function kH(e) {
|
|
var pK = document.all? window.event.keyCode:e.which;
|
|
return pK != 13;
|
|
}
|
|
document.onkeypress = kH;
|
|
if (document.layers) document.captureEvents(Event.KEYPRESS); |