Update IE Doc Mode to latest version using script/ Tag

Go To StackoverFlow.com

0

I have a requirement to update IE mode to latest version. How to know the latest version of IE using script?

I can use META tag but in meta tag we need to mention the browser version. If i mention the browser version as IE9, what if the end user user browser version is IE8?

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

I want to know the end user browser version and set the doc mode (If the user browser version is IE8/IE9, set doc mode as IE8/IE9)

how to achieve this?

Thanks in advance :)

2012-04-04 17:01
by Santhosh


4

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

The value edge means "using as recent a version as possible".

2012-04-04 17:05
by Niet the Dark Absol
Ads