Alex Hope O'Connor
Alex Hope O'Connor

Reputation: 9694

JQuery IE8 WinXP compatible version

I have recently been developing a website which relies a large part on the use of JQuery, the target browser is IE8, but I have been developing on a Win7 machine and have only just now realised that there is a difference in compatability between IE8 on WinXP & Win7.

So a lot of stuff is throwing random javascript errors in the JQuery file in IE8 on WinXP, so I would like to know what is the most comptatible version of JQuery for IE8 on WinXP and Win7 if it is possible.

Thanks, Alex.

Upvotes: 3

Views: 1111

Answers (1)

Andrew Moore
Andrew Moore

Reputation: 95344

I doubt it's jQuery. Make sure that you don't have compatibility mode enabled on one machine and not on the other.

You can also force compatibility mode off by adding the following tag in your <head>:

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

Upvotes: 3

Related Questions