I've been trying to use typed.js in Blogger but there is a problem in the animation when there is a "&" (ampersand). The script works well till it met an "&" it waits like 2-3 seconds and show at once (jump) the remaining text.
But when I use it in a local html file it works perfectly fine, so I think the problem is with blogger.
Any ideas ?
For information the code below is wrapped in CDATA on blogger and there is no way to change it.
My code :
$(function () {
var typed = new Typed("#mySpan ", {
strings: [" Hello ",
" Hi ",
" Hello & Hi " ],
backSpeed :90,
typeSpeed:90,
loop: true
});
});