-4

In reference to JavaScript Functions Working Locally but not in Test deployment

While I have the website functional for Chrome, not all of my users use Chrome.

Some still prefer (or are restricted to) IE11. IE11, however, cannot execute the JavaScript functions, even when it posts the script for them in the DOM_Explorer and Debugger views.

What can be done to force IE11 to recognize the JavaScript so that all my users can use the page correctly regardless of browser?

wolfsshield
  • 757
  • 5
  • 14

1 Answers1

-1

IE11 doesn't support many of ES6 features. For example arrow functions. If you are using ES6, see this answer on the subject.

Guy Yogev
  • 861
  • 5
  • 14