Top "Internet-explorer-8" questions

Windows Internet Explorer 8 is a web browser developed by Microsoft, released on 19 March 2009 for Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, and Windows 7.

IE8 non-compatibility mode, image with max-width and height:auto

I have an image with this markup <img src="wedding_00.jpg" width="900" height="600" /> And I am using CSS …

internet-explorer-8 css compatibility-mode
Internet Explorer: "console is not defined" Error

I was using console.log() in some JavaScript I wrote and an error of: console is not defined was thrown …

javascript internet-explorer internet-explorer-8 console undefined
$.getJSON returning cached data in IE8

I'm playing around with ASP.net MVC and JQuery at the moment. I've come across behavour which doesn't seem to …

jquery asp.net-mvc internet-explorer-8 getjson
IE8 XSS filter: what does it really do?

Internet Explorer 8 has a new security feature, an XSS filter that tries to intercept cross-site scripting attempts. It's described this …

internet-explorer-8 xss
HTML5 and CSS3 for IE7 and IE8

I inherited a web application where the front end uses new HTML5 tags (header, nav, section tags) and new CSS3 …

html internet-explorer-8 internet-explorer-7 css
Detect IE8 Compatibility Mode

Possible Duplicate: Differentiate IE7 browser and browser in IE7 compatibility mode We have not had time to fully test IE8 …

internet-explorer-8 backwards-compatibility ie8-compatibility-mode
Does IE8 out-of-the-box have support for 'localStorage'

I am trying to use the HTML5 feature localStorage. According to this blog it can be done using IE8, however …

javascript html internet-explorer internet-explorer-8
<img> inside <a> gets blue border

<a href="index.html"><img src="image.png"/></a> IE8 highlights the image with …

html css internet-explorer-8
'Object Expected' Javascript error in IE8 when using prototype.js

function icPageInit() { $("icImgDiv" + icAlternate()).setOpacity(0); return true; } window.onload = icPageInit; This piece of Javascript code works fine in Firefox and …

javascript internet-explorer internet-explorer-8 prototypejs object-expected
JavaScript - Nuances of myArray.forEach vs for loop

I've seen plenty of questions that suggest using: for (var i = 0; i < myArray.length; i++){ /* ... */ } instead of: for (var …

javascript arrays for-loop internet-explorer-8 iterator