Hola
mgocx, que tal.
Código Javascript
:
Ver original<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<input type="text">
<p></p>
<script>
window.onload = (function(){
try{
$("input").on('keyup', function(){
var value = $(this).val().length;
$("p").html(value);
}).keyup();
}catch(e){}});
</script>
</body>
</html>
La estrella esta noche es
length.
Consulta
http://api.jquery.com/