Well, that sort of thing has come up before with some of the scripts written by DD during a certain period where the author got 'null happy'. I think in this case it's due to this line in the main script:
Code:
setting.gallerylayers[setting.bglayer].innerHTML=null
Change it to:
Code:
setting.gallerylayers[setting.bglayer].innerHTML="";
and that should take care of it. But you may also have to change this line as well:
Code:
setting.descdiv.innerHTML=null
to:
Code:
setting.descdiv.innerHTML="";
In IE and some other browsers, setting the innerHTML value to the null object, which technically should empty it, via automatic type conversion to a string (innerHTML is non-standard and can be considered either an object or a string), results in the literal string 'null'. This will not mess up other browsers which consider it an object, as the empty string will be converted to the empty object by them.
Bookmarks