$(document).keypress(function (evt) {
if (evt.keyCode == 13) {
$(':submit').attr('disabled', 'disbled');
}
});MaurĂcio -----Mensagem Original----- De: Manolet Gmail Para: [email protected] Enviada em: segunda-feira, 19 de janeiro de 2009 10:30 Assunto: [jQuery] disable form submit when pressing enter key. I need to disable form submission on Enter Key press, is there anyway to do this for a single form?

