Program Download – IE CHROME – “is not commonly downloaded and could be dangerous.”

The best resources are this blog post and this blog post. To sum up: Sign you package with an authenticode signature. Don’t be malware (I’m sure you got that covered). Logo your software (if it’s not a browser plug-in). This can be a frustrating process, so hang in there. Microsoft has not disclosed how many … Read more

Internet Explorer 11 does not add the Origin header on a CORS request?

Internet Explorer’s definition of the “same origin” differs to the other browsers. See the IE Exceptions section of the MDN documentation on the same-origin policy: Internet Explorer has two major exceptions when it comes to same origin policy: Trust Zones: if both domains are in highly trusted zone e.g, corporate domains, then the same origin … Read more

CSS3 transform:scale in IE

IE9 supports transform: -ms-transform: scale(0.5,0.5); For other versions of IE, there’s a complex syntax. Something like this: filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod=’auto expand’, M11=1.5320888862379554, M12=-1.2855752193730787, M21=1.2855752193730796, M22=1.5320888862379558); Look here for more info.

How to get IE9 standards support for dialogs opened by HTA?

A quick Google of the keywords in this question gave me this page on Microsoft MSDN site: http://msdn.microsoft.com/en-us/subscriptions/ms536496(v=vs.85).aspx The answer to your question is on tha page. The answer is to add an x-ua-compatible meta tag to your HTML’s <head> section. To quote: By default, HTAs display webpages in Compatibility View, which displays standards-mode content … Read more