Number of characters in field
by Joe Saad
HTML
<input type="text" >
<div></div>
JavaScript
$('input').keyup(function(){
$('div').text($('input').val().length);
});
by Joe Saad
<input type="text" >
<div></div>
$('input').keyup(function(){
$('div').text($('input').val().length);
});