I want to display a sentence one character at a time, one by one, with jQuery. Is there a plugin that can do this Or how could I get this effect?
I created a neat little js library recently with no dependencies that solves this minimalistically. Check out Sequencr.js
var stringToPrint = "Hello World!" Sequencr.for(0, stringToPrint.length, function(i) { document.getElementById("output").innerHTML += stringToPrint[i]; }, 200, null);