takinola
takinola

Reputation: 1773

Check javascript compatibility with Internet explorer

I have some javascript code that does not run in IE 11. Is there a quick way to check where the incompatibly is other than going through the code line by line to see what commands and statements are supported by that version of Internet Explorer?

Upvotes: 11

Views: 14510

Answers (2)

takinola
takinola

Reputation: 1773

Solved the issue by using JSHint (installed as package on Sublime Text 3) with option "esversion" set to 3 (compatibility with ECMAScript 3). This got me 90% of the way there and I did the rest manually.

Upvotes: 2

Joan Albert
Joan Albert

Reputation: 665

I don't remember an "online code checking", but the most similar maybe are this two websites, can I use? and for Ecmascript.

Hope it helps!

Upvotes: 3

Related Questions