Tal y como dijo
Alexis88. Te dejo el código modificado:
Código Javascript
:
Ver original$(document).ready(function (){
textEscribe("ESTE ES UN MENSAJE QUE SIMULA ESCRIBIR", '#EscribirAqui', 50); /*cambias el id del div por el id del input*/
});
function textLista()
{
max = textLista.arguments.length;
for (i = 0; i < max; i++)
this[i] = textLista.arguments[i];
}
function textEscribe(txt, selector, time)
{
$(selector).empty();
var x = 0; pos = 0;
var tl = new textLista
(
txt
);
var l = tl[0].length;
textInterval(selector, tl, l, x, pos, time);
}
function textInterval(selector, tl, l, x, pos, time)
{
var intervalo =
setInterval(function() {
$(selector).val(tl[x].substring(0,pos)); /*cambias html por val*/
if(pos++ == l)
clearInterval(intervalo);
}, time);
}
Saludos