typetext.js
TypeText is a jQuery plugin to add typing text effect to your text .
Usage :
<script src="typetext.js"></script> <script> $(function(){ $('selector').typetext(); }); </script> Options and Defaults newline : true //Enables newline newlinechar : '.' //Character after which newline will start speed: 100 //Typing speed in milliseconds Example $('.text').typetext({ newline:false, newlinechar:',', speed:50 })