$(".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(); } });