Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Linux box. How do I see how my HTML pages look as rendered in Microsoft Internet Explorer? How do I test JavaScript functionality in Internet Explorer?

I don't want to install a VM and a copy of the Windows OS.

share|improve this question

6 Answers

up vote 8 down vote accepted

Your best friend as a Linux web developer is IEs4Linux, which uses Wine to run different versions of Internet Explorer.

share|improve this answer

Check out this page to see how your page will look across browsers and OS'

http://browsershots.org/

To actually interact with your web site though I would suggest something like Wine or a VM like Xen.

Also see this link: How to install internet explorer on Ubuntu or see this page IEs4Linux.

share|improve this answer
Doesn't wine use Gecko, rather than reimplementing IE? – Blorgbeard Apr 8 '09 at 0:54
You can run windows programs on Wine including IE. – Brian R. Bondy Apr 8 '09 at 0:55
If you run IE under Wine, then you are using IE, not Gecko. – Eddie Apr 8 '09 at 1:39

I use Linux at work and do web development that has to support Internet Explorer 6 (and later) and Firefox 2 (and later).

IE4Linux is not really good enough for properly testing Internet Explorer browser rendering as it doesn't work exactly as Internet Explorer does in Windows. You could use something like browsershots, but I would recommend running Windows in a VM and test using that for Internet Explorer testing. I've done that for awhile and it works great as long as you have a spare 512 MB RAM for Windows XP.

share|improve this answer
Great suggestion, but my primary box these days is a netbook. Spare ram I do not have. – tpdi Apr 8 '09 at 1:21
ouch, then I dunno dude. I've tried using IE4Linux before but I've had incorrect CSS, CTDs (from JS no lesS) and various rendering issues with it before. It might be good enough for a base santiy check with more detailed checks on XP done only so often. – SCdF Apr 8 '09 at 1:40

Another service similiar to browsershots, but faster, is IE NetRenderer. Otherwise, if you have a copy of Windows lying around, why not use a virtual machine? Suns VirtualBox is nice enough.

share|improve this answer

Probably your best bet for accurate rendering without paying for a Windows license is using one of the MS provided virtual machines. Below are some links on tutorials for setting up the VMs using VirtualBox.

http://blog.philipbrown.id.au/2009/03/internet-explorer-application-compatibility-vpc-images-under-virtualbox/

http://www.makeuseof.com/tag/installing-windows-7-on-a-virtual-machine/

I've used VirtualBox and these images quite a bit and it works well, the only downside is you have to reinstall every quarter because the images expire.

share|improve this answer

I agree that browsershots.org is a great place to start, but it only provides a screenshot. If you're using JavaScript or jQuery and need to see how see how things appear when you interact with your page in Internet Explorer (practically any version from Internet Explorer 5 and up), crossbrowsertesting.com is an excellent resource.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.