1

I have a web application working fine with chrome and mozilla. There seems to be a glitch with IE11 and could not load the pages properly with this browser.

When F12 developer mode is active, then it works well in all aspects.

There are no console logs and style attributes which might be problematic with IE11. Still the pages are not loading properly.

Unfortunately i am even not getting any console errors. This section is completely blank.

Application is built on angular1.2 and jquery2.1. IE11 version is 11.0.9600.18124

janasainik
  • 811
  • 5
  • 20
  • 40
  • Impossible to tell what the problem is - usually Angular just works fine with IE 11. You will need to either trim it down until the problem goes away or first update to Angular 1.4 to see if that helps. – Johannes Jander Jan 08 '16 at 09:10
  • It could also be a help if there are any frequent possible things that may cause issues! – janasainik Jan 08 '16 at 09:28

1 Answers1

0

This has been resolved by updating any http calls with 'get' method to 'post'. There may be a work around if still 'get' method has to be used.

So, by clearing any console logs and updating all http calls to 'post' method resolved the issue.

janasainik
  • 811
  • 5
  • 20
  • 40