Does IE9 have a file size limit for CSS?

There are 3 limits: a sheet may contain up to 4095 selectors, see http://demos.telerik.com/testcases/4095issues.html a sheet may @import up to 31 sheets, see http://demos.telerik.com/testcases/BrokenTheme.aspx @import nesting supports up to 4 levels deep Microsoft support/MSDN reference links: http://support.microsoft.com/kb/262161 http://blogs.msdn.com/b/ieinternals/archive/2011/05/14/internet-explorer-stylesheet-rule-selector-import-sheet-limit-maximum.aspx

css3 text-shadow in IE9

Yes, but not how you would imagine. According to caniuse (a very good resource) there is no support and no polyfill available for adding text-shadow support to IE9. However, IE has their own proprietary text shadow (detailed here). Example implementation, taken from their website (works in IE5.5 through IE9): p.shadow { filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45); } For … Read more

Website with JS doesn’t work in IE9 until the Developer Tools is activated

I appreciate I’m pretty late to the party here, but I’ve got a solution for IE9 that’s a little different. (function() { var temp_log = []; function log() { if (console && console.log) { for (var i = 0; i < temp_log.length; i++) { console.log.call(window, temp_log[i]); } console.log.call(window, arguments); } else { temp_log.push(arguments); } } … Read more

CORS with jQuery and XDomainRequest in IE8/9

POST method is supported, and to make a cross-domain https:// request your calling page would also need to be loaded over https. This is the best article I have found which explains these and other limitations of XDomainRequest in detail: http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx

IE9 blocks download of cross-origin web font

IE9 supports .WOFF; IE8 does not, and supports only .EOT fonts. Open the IE9 F12 Developer Tools and you see the following messages: CSS3117: @font-face failed cross-origin request. Resource access is restricted. Neuton-webfont.woff CSS3117: @font-face failed cross-origin request. Resource access is restricted. YanoneKaffeesatz-Regular-webfont.woff CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable. Neuton-webfont.ttf … Read more

Why does IE9 opens in Document Mode as IE7 standards?

Try this answer: https://stackoverflow.com/a/13524518/1679310. Summary, give the IE browser more information in the meta tag: <!DOCTYPE html> <html> <head> <title>My Web</title> <meta http-equiv=”X-UA-Compatible” content=”IE=edge” /> Edit Note: As Olly Hodgson mentioned, the proper option is IE=edge, as currently stated in the above snippet. Below is the original, also working version: <meta http-equiv=”X-UA-Compatible” content=”IE=100″ />

addEventListener in Internet Explorer

addEventListener is the proper DOM method to use for attaching event handlers. Internet Explorer (up to version 8) used an alternate attachEvent method. Internet Explorer 9 supports the proper addEventListener method. The following should be an attempt to write a cross-browser addEvent function. function addEvent(evnt, elem, func) { if (elem.addEventListener) // W3C DOM elem.addEventListener(evnt,func,false); else … Read more

Forcing Internet Explorer 9 to use standards document mode

<!doctype html> <meta http-equiv=”X-UA-Compatible” content=”IE=Edge”> This makes each version of IE use its standard mode, so IE 9 will use IE 9 standards mode. (If instead you wanted newer versions of IE to also specifically use IE 9 standards mode, you would replace Edge by 9. But it is difficult to see why you would … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)