1

I need java script to load correctly on Local IIS. I am using IIS 8.5

I am realy laic for IIS, but what I have done so far:

  • I have 'Static content' turned on
  • I gave permission to 'everyone' to my Java script folder

There are some duplicate questions like , and also this, and this. But nothing is helpful in my case.

Do you know how to find out what is issue in my case ?

Community
  • 1
  • 1
Raskolnikov
  • 3,103
  • 6
  • 31
  • 72
  • Too few diagnostic info here. Are you able to navigate on a plain .html page? What is the http status of the call to your javascript file? ... – Frédéric Jan 28 '16 at 09:09
  • Yes, it is working fine without javascript. My home page is 'https ://ComputerName/ Client.Web/Home/Index' – Raskolnikov Jan 28 '16 at 09:14

1 Answers1

0

Ok, I have solution.

I find out that it works in all browsers except IE.

Solution is to add meta tag:

 <meta http-equiv="X-UA-Compatible" content="IE=edge" />

See more details

Community
  • 1
  • 1
Raskolnikov
  • 3,103
  • 6
  • 31
  • 72