0

In all the modern browsers except in IE9 my code is working, but in IE9 it is not getting into my for loop. Please help me in understanding what is going wrong. Thanks.

for(var i=0; i<jobs.length; i++)ß is causing the issue.
      {
          tmp[jobs[i]['id']] =
          {
              'jobTitle' : jobs[i]['jobTitle'],
              'brand' : jobs[i]['brand'],
              'pid' : jobs[i]['pid'],
              'dynaURL' : jobs[i]['dynaURL']
          };
      }
ntzm
  • 4,663
  • 2
  • 31
  • 35
deepak
  • 1
  • 2

1 Answers1

0

Add the website to the Compatibilty View.

Or, you can change it from Developer Tools: Tools-> F12 Developer Tools -> Check here the Browser Mode and Document Mode

you can check also similar issue: IE9: Weird Javascript error

Community
  • 1
  • 1