D
// input overflow prevention
if ($(this).val().length >= $(this).attr("maxlength")) {
if((e.shiftKey && e.Tab) || e.Tab){
return false;
} else if(e.shiftKey){
return false;
} else {
if($(this).is(':last-child')){
el.first().focus();
} else {
$(this).next(el).focus();
}
return false;
}
}