Cambiar el enfoque al siguiente campo jQuery después de ingresar
$(".inputs").keyup( function () {
if (this.value.length == this.maxLength) {
var n=$(this).next('.inputs');
n.focus();
if(n.val().length==n.prop('maxlength')) n.next('.inputs').focus();
}
});
Friendly Fowl