Skip to main content
chandar20
Participant
April 13, 2016
Question

Is there a way to enable Browser compatibility view for throughout application.

  • April 13, 2016
  • 2 replies
  • 356 views

We are using java plugin for Crystal reports which supports up to Internet Explorer 10. So i have enabled IE compatibility view to run the reports in IE11. Is there a way to enable compatibility view for entire application.

Thanks

This topic has been closed for replies.

2 replies

WolfShade
Legend
April 13, 2016

First of all, you must be absolutely sure to have <!DOCTYPE html> as the first line, nothing before it, not even a space.

Next, add this immediately below the <title> tag:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" /><!-- Case sensitive - use exactly as typed -->

HTH,

^_^

Inspiring
April 13, 2016

This isnt something that Coldfusion would do. This just needs to be set in your HTML. You should be able to use the meta tag to do this:

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