Without even seeing code, my gut tells me that you have a trailing comma somewhere inside an array or object literal. IE will choke on those with the Object expected
error, usually at line 1 (which is meaningless).
Something like this:
var something = [
"val1",
"val2",
"val3",
"val4",
];
^^^^^