user663724
user663724

Reputation:

How to fix Errors in IE

I am uisng IE 6 .

My page is working fine under Mozilla , but when i try to open the page from IE it shows an Error as

LINE : 553
Char :82
Error: Expected identifier , String or number 
code :0

please advice

Upvotes: 0

Views: 217

Answers (2)

epascarello
epascarello

Reputation: 207557

I would bet you have a trailing comma at the end of an array or object.

Also you are using a browser that is 11 years old. It is like using a model T in a formula one race. Yeah it works, but you are just slow and way behind on the technology front.

Upvotes: 2

Bakudan
Bakudan

Reputation: 19492

Best way to deal with:

  1. Find the line and the "char", where the error is;
  2. If the error is not at that line, look the previous line(for missing ; or wrong syntax);
  3. If the error is not on the previous line, examine backwards. If single or double quote omitted, the error will appear several lines after.

Hope this help.

Upvotes: 2

Related Questions