I have a collection of extjs objects on a webpage, developing using Firefox so I can debug using Firebug. After a while I start IE to check compatibility and get a blank page in IE, but all works in FF.
In IE I get no Javascript errors.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the Firebug options turn on ‘Strict Warnings’ then look for a warning in the .js source file for your page. It seems that Firefox is much more forgiving of a comma after the last member of a collection. Look for warning labeled ‘trailing comma is not legal in ECMA-262 object initializers’. This pinpointed the problem.