код css
input.long{
width:50%;
max-length:50;
}
input.number{
width:4em;
max-length:4;
}
для применения html-кода,
Title : <input type='text' class='long'/>
Phone : <input type='text' class='short'/>-<input type='text' class='short'/>-<input type='text' class='short'/>
скрипт (просто использующий jquery) для применения атрибута в css,
$('input:text.long').attr('maxlength',$('input:text.long').css('max-length'));
$('input:text.short').attr('maxlength',$('input:text.short').css('max-length'));
работать на IE, но не работать в других браузерах.я могу установить один или несколько атрибутов элемента настройки по свойству css в основных браузерах?