Try this:
$('.tg').bind('keypress', function(event) {
if(event.which === 13) {
$(this).next().focus();
}
});
or the loop version: http://jsbin.com/ofexat/2
Try this:
$('.tg').bind('keypress', function(event) {
if(event.which === 13) {
$(this).next().focus();
}
});
or the loop version: http://jsbin.com/ofexat/2