Compatible Version of jQuery IE8 WinXP

I recently developed a website that relies heavily on using jQuery, the target browser is IE8, but I am developing on a Win7 machine and only now realized that there is a compatibility difference between IE8 on WinXP and Win7.

Thus, many things throw random javascript errors into a jQuery file in IE8 on WinXP, so I would like to know what is the most difficult version of jQuery for IE8 on WinXP and Win7, if possible.

Thanks, Alex.

+3
source share
1 answer

I doubt this is jQuery. Make sure you do not have compatibility mode on one computer and not on another.

You can also disable compatibility mode by adding to your <head>next tag:

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

All Articles