How To Test Multiple Versions of IE Using Parallels

Author: , July 19th, 2012

Download desired Win/IE combo from: http://www.microsoft.com/en-us/download/details.aspx?id=11575 On Win, run the downloaded part01.exe file and generate the final WindowsX.vhd file from the additional .rar files. On Mac, use the Parallels converter to make the file useable: /Library/Parallels//Parallels\ Service.app/Contents/PlugIns/Parallels\ VM\ Converter.app/Contents/MacOS/prl_convert WindowsX.vhd Original article: http://joemaller.com/2896/ie6-ie7-and-ie8-compatibility-testing-with-microsoft-virtual-pcs/ Notes per Microsoft: The password to login to all of these images […]

How To Create A Conditional Comment That Runs For All Browsers Except IE 8 And Below

Author: , July 12th, 2012

Use downlevel-revealed conditional comments:

How To Cope With HTML5 and IE

Author: , July 22nd, 2011

How To Fix Safari And IE7 Table Rendering Problems

Author: , May 30th, 2011

I was having trouble with a table not sizing properly. The width of the table was much wider that the content. It tuns out that both Safari and IE7 have trouble with COLSPAN. Worked just fine in FF and IE8. The fix was to make the COLSPAN into a single cell and place another table […]

How to deal with broken form <input type=image> in IE

Author: , October 22nd, 2009

[code] <form method="post"> <input type="hidden" name="myName" value="" /> <input type="image" name="submit" value="42" src="icon.gif" onclick="this.form.myName.value = this.value"> </form> [/code]