tags:

views:

60

answers:

1

can anyone help me please why my images is not showing on internet explorer 6;7 but in firefox, chrome,avant, IE8 no problem at all... http://previewagency.com/index.shtml

A: 

You have an error on this line:

obj.style.left = theLeft + 'px' ;

Because you are doing this

setTimeout("placeIt('layer1')", 500); 

Which leads to this

obj = document.getElementById(obj); 

So whatever layer1 is, make sure there is actually an element in the DOM with that ID before you call the function.

jarrett