I am using jTypeWriter jquery in a php.
This jquery is getting its text from a txt file that contains many sentences each one end with a period.
The problem is : I want the jquery to start typing from the beginning each time the sentence in the file is finished, and then move to the next one and so on. I want that to be a loop.
I tried inserting break tag at the end of the sentence in the text file but that dosent help.
<script type="text/javascript">
$(document).ready(function() {
$("#my-container").jTypeWriter({
sequential: false,
loop: true,
loopDelay: 5,
duration: 6
});
});
</script>
The jquery server is maybe down but I found the code here :http://pastebin.com/W85XGWcV
Any help would be really appreciated.
Thanks.
Seriously, maybe you should try another plugin/script. I spent some time to get a workaround. Well with this script you cannot define the speed, if you want, you can try it on your own! The solution that I found is using another version of jTypeWriter that I found somewhere on the net (I’m not sure if it’s the latest: http://www.ugcs.caltech.edu/~kratsg/Scripts/TypewriterEffect/demo.html)