Ah, looks like there is just a problem with the ajax.js file when run locally, at least in Opera and FF. I was able to fool them by making it override the test for:
Code:
xmlhttp.status == 200
Something is still stopping it from working for me locally in IE 7. But, I got it working well enough in those others to get the typing text to work. At the end of ajax.js, add this:
Code:
if(document.getElementById('example2')){
var tt=new TypingText(document.getElementById("example2"), 75, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
tt.run();
}
right after:
Bookmarks