nunchuckNinja
nunchuckNinja

Reputation: 89

Bootstrap 3 application IE 9 rendering issue

I've developed an application with the following UI Stack

No HTML 5 elements used.

Browsers on which app was successfully tested:

But I've run into major rendering issues on IE9, despite it being supported by Bootstrap 3.

When I first render the application, there's no error but none of the elements display at all.

The moment I open up the Developer tools console tab(to check errors) and do a fresh request, the whole application renders completely.

In the Developer tools on IE9, the Browser mode is IE9 and Document mode is IE9 Standards.

I even tried adding <meta http-equiv="X-UA-Compatible" content="IE=edge"> to my HTML, but to no success.

Any idea what I could be doing wrong?

Upvotes: 0

Views: 233

Answers (2)

Ian Lim
Ian Lim

Reputation: 4284

You may want to consider using a console.log wrapper http://benalman.com/projects/javascript-debug-console-log/

Or use something like grunt-remove-logging https://github.com/ehynds/grunt-remove-logging to avoid similar accidents

Upvotes: 1

nunchuckNinja
nunchuckNinja

Reputation: 89

Found "console is undefined" on enabling debugger.

Same solution as accepted in this question Console is undefined error in IE9

Upvotes: 0

Related Questions