IE10/IE11 Abort Post Ajax Request After Clearing Cache with error “Network Error 0x2ef3”

This can be happening due a security certificate issue. If you clear the cache you loose part (if not all) of certificate information. You can find more information (and a workaround) in http://www.jonnyreeves.co.uk/2013/making-xhr-request-to-https-domains-with-winjs/ Basically it says you must do a GET before your POST request in order to update the certificate information. I had this … Read more

IE10 SCRIPT5009: ‘__doPostBack’ is undefined

There is apparently a bug in the browser definition files that shipped with .NET 2.0 and .NET 4. The definition files do not cater for IE10 as a browser version and hence defaults to a default definition which doesn’t support JavaScript. Scott Hanselman has a very detailed writeup about this issue here: http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx Scott proposes … Read more

Why is backface-visibility hidden not working in IE10 when perspective is applied to parent elements?

I came up against this glitch too and it is definitely a glitch. The workaround is to apply the perspective transform on the child element. I updated your fiddle here: http://jsfiddle.net/jMe2c/ .item { backface-visibility: hidden; transform: perspective(200px) rotateX(0deg); } .container:hover .item { transform: perspective(200px) rotateX(180deg); } (See also answer at https://stackoverflow.com/a/14507332/2105930) I think it is … Read more

Export the HTML table to excel is not working in IE

Excel Export Script works on IE7+ Mozilla & Chrome =========================================================== function fnExcelReport() { var tab_text=”<table border=”2px”><tr bgcolor=”#87AFC6″>”; var textRange; var j=0; tab = document.getElementById(‘headerTable’); // id of table for(j = 0 ; j < tab.rows.length ; j++) { tab_text=tab_text+tab.rows[j].innerHTML+”</tr>”; //tab_text=tab_text+”</tr>”; } tab_text=tab_text+”</table>”; tab_text= tab_text.replace(/<A[^>]*>|<\/A>/g, “”);//remove if u want links in your table tab_text= tab_text.replace(/<img[^>]*>/gi,””); // … Read more

IE 10 – File download issues

I think this may explain the strange behaviour: “Content-Length and Transfer-Encoding Validation in the IE10 Download Manager” It seems that IE9 beta had introduced content-length and transfer-encoding validation when downloading files, but found it was too problematic since many servers didn’t send proper values for these downloads that are processed through code. Apparently they turned … Read more