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?
This converts a string to an array, and writes out it out character at a time.
var str = "This is a sentence".split(''); for (var i=0; i < str.length; i++) { console.log(str[i]); };
http://jsfiddle.net/44xEe/1/