Why don't InfoCards work in IE8? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:04:23Z http://stackoverflow.com/feeds/question/682624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/682624/why-dont-infocards-work-in-ie8 1 Why don't InfoCards work in IE8? Andrew Arnott 2009-03-25T17:29:42Z 2009-03-26T04:08:46Z <p>What changed in IE8 that makes detecting InfoCard Selector support in javascript stop working unless IE8 is put in Compatibility Mode?</p> <p>And more to the point, what is the new JavaScript code to detect the presence of InfoCard support?</p> <p>Here is the script that worked up through IE7, including FireFox with a plug-in in some cases:</p> <pre><code>function AreCardsSupported() { var IEVer = -1; if (navigator.appName == 'Microsoft Internet Explorer') { if (new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})").exec(navigator.userAgent) != null) { IEVer = parseFloat(RegExp.$1); } } // Look for IE 7+. if (IEVer &gt;= 7) { var embed = document.createElement("object"); embed.setAttribute("type", "application/x-informationcard"); return "" + embed.issuerPolicy != "undefined" &amp;&amp; embed.isInstalled; } // not IE (any version) if (IEVer &lt; 0 &amp;&amp; navigator.mimeTypes &amp;&amp; navigator.mimeTypes.length) { // check to see if there is a mimeType handler. x = navigator.mimeTypes['application/x-informationcard']; if (x &amp;&amp; x.enabledPlugin) { return true; } // check for the IdentitySelector event handler is there. if (document.addEventListener) { var event = document.createEvent("Events"); event.initEvent("IdentitySelectorAvailable", true, true); top.dispatchEvent(event); if (top.IdentitySelectorAvailable == true) { return true; } } } return false; } </code></pre> http://stackoverflow.com/questions/682624/why-dont-infocards-work-in-ie8/684494#684494 1 Answer by Andrew Arnott for Why don't InfoCards work in IE8? Andrew Arnott 2009-03-26T04:08:46Z 2009-03-26T04:08:46Z <p>I got an answer out of band from the IE8 team:</p> <p>Change</p> <pre><code>embed.setAttribute("type", "application/x-informationcard"); </code></pre> <p>to</p> <pre><code>embed.type = "application/x-informationcard"; </code></pre>