It appears to be the image itself:
Code:
<a href="http://www.ambercakes.com/TagGraphics/bestpersawACtag.gif" rel="lightbox" title="Right click image than Save picture as">
substitute another image, preferably a jpg.
Now, it may be that the gif, being animated, never truly signals its onload event. Or, there could be something else wrong with it (from IE's point of view). Anyways, I re-saved it as an animated gif with no looping, and the error went away, then I re-saved it again as infinite looping and the error came back. Then I saved it with 13 loops - still had an error - unless I let the loops run out before closing it - go figure.
However, it also appears that a workaround can be achieved, change (in prototype):
Code:
for (var property in styles)
if (property == 'opacity') element.setOpacity(styles[property]);
else
elementStyle[(property == 'float' || property == 'cssFloat') ?
(Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
property] = styles[property];
to:
Code:
for (var property in styles)
if (property == 'opacity') element.setOpacity(styles[property]);
else /*@cc_on @*/
/*@if(@_jscript_version >= 5)
try{
@end @*/
elementStyle[(property == 'float' || property == 'cssFloat') ?
(Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
property] = styles[property];/*@cc_on @*/
/*@if(@_jscript_version >= 5)
} catch(e){};
@end @*/
Bookmarks