Why don't InfoCards work in IE8? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T23:04:23Zhttp://stackoverflow.com/feeds/question/682624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/682624/why-dont-infocards-work-in-ie81Why don't InfoCards work in IE8?Andrew Arnott2009-03-25T17:29:42Z2009-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 >= 7) {
var embed = document.createElement("object");
embed.setAttribute("type", "application/x-informationcard");
return "" + embed.issuerPolicy != "undefined" && embed.isInstalled;
}
// not IE (any version)
if (IEVer < 0 && navigator.mimeTypes && navigator.mimeTypes.length) {
// check to see if there is a mimeType handler.
x = navigator.mimeTypes['application/x-informationcard'];
if (x && 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#6844941Answer by Andrew Arnott for Why don't InfoCards work in IE8?Andrew Arnott2009-03-26T04:08:46Z2009-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>