As a side note, I've found a more efficient way to set this up:
Code:
jQuery(function($){
var typrs = $('.typer'), typng = [], tl = typrs.length, typr = 0;
typrs.each(function(i){
typng[i] = [$(this), new TypingText(this, 100, '_', delayType)];
});
function typeThem(){
typrs.hide();
typng[typr = typr % tl][0].show();
typng[typr++][1].run();
}
function delayType(){
setTimeout(typeThem, 3000);
}
typeThem();
});
This way only one TypingText instance is created for each 'typer' and much less use of the $(selector/element) creation process is required as well. The original created an instance and a $(selector/element) object each time a 'typer' was run.
Bookmarks