belli bir karakterden sonra inputtan çıkma
5
●519
- 30-09-2014, 17:29:54
- 03-10-2014, 22:11:07normal 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(); } }); })