Saturday, May 21, 2011
Thursday, May 19, 2011
enter key event on form submit using jquery
$(document).ready(function () {
$('#ItxtUserID').val('');
$('#ItxtPwd').val('');
$('#ItxtUserID').focus();
$('#divLogingEnter').bind('keypress', function (e) {
if (e.which == 13) {
Login();
}
});
});
$('#ItxtUserID').val('');
$('#ItxtPwd').val('');
$('#ItxtUserID').focus();
$('#divLogingEnter').bind('keypress', function (e) {
if (e.which == 13) {
Login();
}
});
});
Subscribe to:
Posts (Atom)