I have an app that is broke in IE10 but runs fine in IE10 Compatibility View. A quick google results in the
I had the same problem. The problem is a bug in MSIE 10, so telling people to fix their issues isn't helpful. Neither is telling visitors to your site to add your site to compatibility view, bleh. In my case, the problem was that the following code displayed no text:
document.write ('');
document.write ('Blah, blah, blah... ');
document.write ('
');
After much trial and error, I determined that removing the
and
tags caused the text to appear properly on the page (thus, the problem IS with document mode rather than browser mode, at least in my case). Removing thetags when userAgent is MSIE is not a "fix" I want to put into my pages.
The solution, as others have said, is:
Blah...
Yes, the meta tag has to be the FIRST tag after HEAD.