normal html maxlength="" etiketi isini gormuyormu?

ornek

<input type="text" maxlength="2">
<input type="text" maxlength="4">

tamam okuyunca anladim

en basit haliyle yaziyorum buraya yine max length ver daha sonra


$('input').on('keyup', function(){
    if ($(this).val().length === $(this).prop('maxlength')) {
        $(this).next('input').focus();
    }
});
})