My script works everywhere except in Internet Explorer. Actually no big deal.. but my debugger doesn’t show any errors (Firebug Lite and the internal Explorer Debugger).
How can I find out which errors occur, if the debugger doesn’t tell anything? Is there a documention for the JavaScript standard of Internet Explorer?
There’s no special documentation for that.
I would advise you use a lot of
alert()to see if every var gets the value you expect it to get.One known isse for example is that if you have an event don’t use the property
.targeton IE it will not work, use.OriginalTarget.