How can I make SmartScreen Filter trust a self-signed certificate

To quote from MSDN’s website: Detractors may claim that SmartScreen is “forcing” developers to spend money on certificates. It should be stressed that EV code signing certificates are not required to build or maintain reputation with SmartScreen. Files signed with standard code signing certificates and even unsigned files continue to build reputation as they have … Read more

Event fired when clearing text input on IE10 with clear icon

The only solution I finally found: // There are 2 events fired on input element when clicking on the clear button: // mousedown and mouseup. $(“input”).bind(“mouseup”, function(e){ var $input = $(this), oldValue = $input.val(); if (oldValue == “”) return; // When this event is fired after clicking on the clear button // the value is … Read more

Flex auto margin not working in IE10/11

This appears to be an IE bug. According to the flexbox specification: 8.1. Aligning with auto margins Prior to alignment via justify-content and align-self, any positive free space is distributed to auto margins in that dimension. Note: If free space is distributed to auto margins, the alignment properties will have no effect in that dimension … Read more

Internet Explorer 9, 10 & 11 Event constructor doesn’t work

There’s an IE polyfill for the CustomEvent constructor at MDN. Adding CustomEvent to IE and using that instead works. (function () { if ( typeof window.CustomEvent === “function” ) return false; //If not IE function CustomEvent ( event, params ) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt … Read more