0

I'm playing around with seadragon trying to make a deepzoom image. I have uploaded it here.

In Firefox and Chrome it works fine, but IE produces a JavaScript error like

an obect was expectet. Linie 95

How can this be solved?

p.campbell
  • 98,673
  • 67
  • 256
  • 322
CruelIO
  • 18,196
  • 16
  • 40
  • 58

1 Answers1

1

You're using a very old version of prototypejs(1.4 from 2005), which causes an error before the one in line 95(Array.shift tries to assign an invalid value to the length of an array, prototype.js line 464). Try using a newer version of prototypejs.

Dr.Molle
  • 116,463
  • 16
  • 195
  • 201
  • Thats right, I have now upgraded lightbox, and everything works perfect. Can i ask how did you spot the error the message from IE isnt very helpfull. Thank you – CruelIO Jul 09 '11 at 07:50
  • I got a good description of the error(IE6, script-debugger told me something about a expected non-negative, finite value for array.length ) – Dr.Molle Jul 09 '11 at 19:13