Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Whenever i open my website it opens in Browser Mode : IE8 Compatibility View. I don't want my website to open in compatibility view either 8 or 9.
I need to set a Browser Mode of IE using jquery or C#. Document Mode of IE had been set but Browser mode of IE could not be set using jquery or C#.

I don't want Browser Mode of IE to be set manually.

Please help me to resolve this problem..
Thanking You in advance.
Posted

You could do that by using META Tag. For example,
HTML
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >


For more information look at this page Defining Document Compatibility[^]
 
Share this answer
 
C#
var j = jQuery.noConflict();
j(document).ready(function(){
    /* detect usage of IE Developer Tools using different Mode for Browser and Document */
    if(j.browser.msie) {
        var browserVersion = j.browser.version.slice(0,j.browser.version.indexOf("."));
        var documentVersion = document.documentMode;
        if(browserVersion != documentVersion) {
            alert("ERROR:\nBrowser Mode and Document Mode do not match!\n\nBrowser Mode: IE"+ browserVersion +".0\nDocument Mode: IE"+ documentVersion +".0");
        }
    }
});
 
Share this answer
 
Comments
Naz_Firdouse 12-Jul-13 3:11am    
does this sets the browser mode?
chirag.jdk 22-Jul-13 7:51am    
it's just for checking purpose
Naz_Firdouse 22-Jul-13 8:15am    
then how to set the browser mode?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900