I have multiple text fields in my form and I want when user enters data in one text field and press enter that the cursor moves to another text-field which is next to curren
**This code was perfectly worked in cursor move to next contenteditable td and textboxes and dropdown list within td ,and datepicker within textbox by reference in class strong text**
`var $input = $('.EnterlikeTab');
$input.bind('keydown', function (e) {
if (e.which == 13) {
e.preventDefault();
var nxtIdex = $input.index(this) + 1;
$(".EnterlikeTab:eq(" + nxtIdex + ")").focus();
}
});`