Is there a difference between the two? I have a web page which IE has a had time processing the Javascript. When I enable Compat mode manually within the toolbar everything works fine.
I did some research on how to force compat mode within the code. What I found was to include a meta tag which tells IE to emulate a specified browser version, like such:
<meta http-equiv="X-UA-Compatible" content="IE=9">
or <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" >
I've tried both, inserting them immediately after the opening head tag, but no success. IE still chokes on the javascript.
Much thanks for any help.