setTimeout and XMLHttpRequest
Date: September 17, 2009 07:35PM
Hello, I know this is not a help forum, but there are so many Javascript gurus in here, that I thought any would find this in 5 seconds...
On this script: http://www.dynamicdrive.com/dynamicindex17/interstitial.js
changing this:
if (interstitialBox.launch)
interstitialBox.initialize()
to this:
if (interstitialBox.launch) {
setTimeout('interstitialBox.initialize()',5000);
}
Breaks it! I think its the ajaxconnect:function. Any idea?