Friday, October 31, 2014

Move focus to next row in table on enter

$('......').keypress(function (e) {
    if (e.which == 13) {
        $(this).closest('tr').next().find('.....').select();
        return false;
    }
});

No comments:

Post a Comment