$(document).ready(function () { $(".tbPassword").keydown(function (e) /* or keyup */ { if (e.keyCode == 13) // 27=esc { $("form").submit(); } }); });