Why is this working fine in Firefox but not IE?

wmwong

New Member
I'm also getting a 404 error so I can only guess. Most often, this problem is due to trailing commas. All the browsers are forgiving of trailing commas, but IE craps out.

E.g.

var obj = {
one: 1,
two: 2,
}

Notice the trailing comma after "two: 2,". That causes problems in IE only.

You can debug this problem better if you install Visual Web Developer from MS.
http://www.microsoft.com/express/Web/

When you get an error in IE, it will halt execution and show you where it crapped out.
 
Top