textboxId.onkeydown = function(e) {
if (!e) {
var e = window.event;
} // Enter is pressed
if (e.keyCode == 13) {
submitFunction();
}
}
Conteúdo para você se capacitar em programação
textboxId.onkeydown = function(e) {
if (!e) {
var e = window.event;
} // Enter is pressed
if (e.keyCode == 13) {
submitFunction();
}
}