$(".inputs").keyup(function () {
if (this.value.length == this.maxLength) {
$(this).next('.inputs').focus();
}
});
참고사이트 : http://stackoverflow.com/questions/23888537/auto-tab-to-next-input-field-when-fill-4-characters$(".inputs").keyup(function () {
if (this.value.length == this.maxLength) {
$(this).next('.inputs').focus();
}
});
참고사이트 : http://stackoverflow.com/questions/23888537/auto-tab-to-next-input-field-when-fill-4-characters