Mennan
Mennan

Reputation: 4497

IE9 standards mode meta tag

I use jquery ui tabs and it didnt work on IE9 normaly for me.

How can i fix it ?

my code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<meta http-equiv="x-ua-compatible" content="ie=edge" /> 

ie9 gives error :

HTML1115: X-UA-Compatible META tag ('IE=EmulateIE7') ignored because document mode is already finalized. 

Upvotes: 3

Views: 4635

Answers (1)

Blynn
Blynn

Reputation: 1411

You can try to use IE9 without Quirks mode.

<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

Upvotes: 2

Related Questions