How to set IE11 Document mode to edge as default?

The rendering mode in Internet Explorer 11 can appear stuck if the site is added to your local Compatibility View list. When this happens, the rendering mode inside the developer tools and out will default to the specified compatibility settings. While this may not be the only way a site can get on this list, … Read more

Make IE cache the resources but always revalidate

I’ve eventually figured it out. Here is an explanation and a tested solution. The following site confirms my observation: http://blog.httpwatch.com/2008/10/15/two-important-differences-between-firefox-and-ie-caching/ It says that IE does not locally store pages with the ‘no-cache’ directive and hence always sends an unconditional request. There’s also a MS support article – https://support.microsoft.com/help/234067/ – which confirms this: “Internet Explorer supports … Read more

Failproof Wait for IE to load

Try this one, it helped me to solve similar problem with IE once: Set oIE = CreateObject(“InternetExplorer.application”) oIE.Visible = True oIE.navigate (“http://technopedia.com”) Do While oIE.ReadyState = 4: WScript.Sleep 100: Loop Do While oIE.ReadyState <> 4: WScript.Sleep 100: Loop ‘ example ref to DOM MsgBox oIE.Document.GetElementsByTagName(“div”).Length UPD: Drilling down IE events I found that IE_DocumentComplete is … Read more

favicon not working in IE

Right you’ve not been that helpful (providing source would be have been really useful!) but here you go… Some things to check: Is the code like this: <link rel=”icon” href=”http://www.example.com/favicon.ico” type=”image/x-icon” /> <link rel=”shortcut icon” href=”http://www.example.com/favicon.ico” type=”image/x-icon” /> Is it in the <head>? Is the image a real ico file? (renaming a bitmap is not … Read more