<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with ie</title>
      <link>http://ask.metafilter.com/tags/ie</link>
      <description>Questions tagged with 'ie' at Ask MetaFilter.</description>
	  <pubDate>Thu, 22 Oct 2009 12:50:45 -0800</pubDate> <lastBuildDate>Thu, 22 Oct 2009 12:50:45 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>31 stylesheet limit... class != className... double margins... get me out of here!</title>
	<link>http://ask.metafilter.com/136161/31%2Dstylesheet%2Dlimit%2Dclass%2DclassName%2Ddouble%2Dmargins%2Dget%2Dme%2Dout%2Dof%2Dhere</link>	
	<description>So, I am sadly tasked with debugging sites on IE every once in a while. Is there anything that even approaches the awesomeness of FireBug/Web Inspector for this task? And, the more advanced the better. I&apos;m debugging what one might call &apos;serious shiz&apos; like namespaces, tricky CSS bugs, javascript screwups...&lt;br&gt;
&lt;br&gt;
Thanks! (and, of course, I&apos;d prefer it to be free but if it&apos;s a paid deal and it works great it would be cake to sell it to the ol&apos; upper management)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.136161</guid>
	<pubDate>Thu, 22 Oct 2009 12:50:45 -0800</pubDate>
	<category>css</category>
	<category>debugging</category>
	<category>firebug</category>
	<category>ie</category>
	<category>javascript</category>
	<category>tools</category>
	<dc:creator>tmcw</dc:creator>
	</item>
	<item>
	<title>Can greasemonkey open a link in a different browser?</title>
	<link>http://ask.metafilter.com/133620/Can%2Dgreasemonkey%2Dopen%2Da%2Dlink%2Din%2Da%2Ddifferent%2Dbrowser</link>	
	<description>Is it possible to use a greasemonkey script in Firefox to open specific links in Internet Explorer?  If so, what would it look like? The particular element in the HTML page is an input button which executes some javascript, which opens a different webapp in a new browser window.   However, that webapp only works with IE, and I use Firefox.  The element looks similar to this:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&amp;lt;input value=&quot;New Webapp&quot;  class=&quot;btn&quot; name=&quot;webapp&quot; onclick=&quot;openIntegration(&apos;/servlet/servlet.Integration?scontrolCaching=1&amp;amp;lid=00b70000000zL1t&amp;amp;eid=50070000009tNYv&amp;amp;ic=1&apos;, &apos;height=600,location=no,resizable=yes,toolbar=no,status=no,menubar=no,scrollbars=1&apos;, 1)&quot; title=&quot;New Webapp&quot; type=&quot;button&quot; /&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
The openIntegration function (which sits in a separate .js file) looks like this:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;function openIntegration(url, props, positionType) {&lt;br&gt;
    var newWindow = window.open(url, &quot;_blank&quot;, props, false);&lt;br&gt;
    if (positionType == 2){&lt;br&gt;
        newWindow.moveTo(0, 0);&lt;br&gt;
    } else if (positionType == 0){&lt;br&gt;
        newWindow.moveTo(0, 0);&lt;br&gt;
        newWindow.resizeTo(self.screen.width, self.screen.height);&lt;br&gt;
    }&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Can javascript be used to specify a browser other than default?  How would I go about doing this?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.133620</guid>
	<pubDate>Wed, 23 Sep 2009 09:51:32 -0800</pubDate>
	<category>firefox</category>
	<category>greasemonkey</category>
	<category>ie</category>
	<category>internetexplorer</category>
	<category>javascript</category>
	<category>mozilla</category>
	<dc:creator>Roger Dodger</dc:creator>
	</item>
	<item>
	<title>Wordpress plugin incompatibility</title>
	<link>http://ask.metafilter.com/131588/Wordpress%2Dplugin%2Dincompatibility</link>	
	<description>Wordpress Filter: Plugin incompatibility with my theme - website screws up on IE. How do I fix it? 2 of my plugins (&lt;a href=&quot;http://wordpress.org/extend/plugins/contact-form-7/&quot;&gt;Contact Form 7&lt;/a&gt;, &lt;a href=&quot;http://wordpress.org/extend/plugins/posttabs/&quot;&gt;Post Tabs&lt;/a&gt;) give a java script error when enabled on &lt;a href=&quot;http://www.eyci.org&quot;&gt;this&lt;/a&gt; site. The js error doesn&apos;t do much in firefox but it renders the whole site disfunctional in IE ( drop down nav doesn&apos;t work, tabs under the headline slider don&apos;t work, etc).&lt;br&gt;
&lt;br&gt;
In IE, when I have debugging enabled, I get an error pop-up stating that there is a error on Line 89. After I click &quot;debug&quot;, this is what is shown:&lt;br&gt;
&lt;strong&gt;&lt;br&gt;
Microsoft JScript runtime error: Object doesn&apos;t support this property or method&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Inside the file, the following code is highlighted on line 89: &lt;br&gt;
&lt;br&gt;
&lt;strong&gt;{return jQuery.easing[jQuery.easing.def](x,t,b,c,d);}&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
So how do I fix this issue in IE? Do I need to contact the plugin author to check if they are using the latest jQuery? ( the theme author says that he is using the latest jQuery) Is there any way around this issue?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.131588</guid>
	<pubDate>Mon, 31 Aug 2009 12:09:59 -0800</pubDate>
	<category>error</category>
	<category>IE</category>
	<category>internetexplorer</category>
	<category>java</category>
	<category>js</category>
	<category>plugin</category>
	<category>resolved</category>
	<category>script</category>
	<category>wordpress</category>
	<dc:creator>Danniman</dc:creator>
	</item>
	<item>
	<title>Alternative Browsers</title>
	<link>http://ask.metafilter.com/131172/Alternative%2DBrowsers</link>	
	<description>What superior/alternative web browsers to Firefox do you use? I have been using firefox with NoScript and most cookies disabled. When it gets too annoying to enable scripts and cookies, I switch over to Internet Explorer (non-updated version). I really dislike using IE but lately, Firefox has been crashing a LOT. &lt;br&gt;
&lt;br&gt;
I was wondering if you had any good experiences with other web browsers such as Safari, Chrome, etc. I plan on keeping firefox but I&apos;d like to explore other options.&lt;br&gt;
&lt;br&gt;
I use a PC running Windows XP.&lt;br&gt;
&lt;br&gt;
Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.131172</guid>
	<pubDate>Wed, 26 Aug 2009 06:59:11 -0800</pubDate>
	<category>browser</category>
	<category>chrome</category>
	<category>firefox</category>
	<category>IE</category>
	<category>internet</category>
	<category>safari</category>
	<category>web</category>
	<dc:creator>bluelight</dc:creator>
	</item>
	<item>
	<title>CSS / Lightbox-esque popup/div width issue.</title>
	<link>http://ask.metafilter.com/125786/CSS%2DLightboxesque%2Dpopupdiv%2Dwidth%2Dissue</link>	
	<description>Scaling down div width to fit around image which has been scaled down via its height element?? Hello!&lt;br&gt;
&lt;br&gt;
I have a simple lightbox type popup on my site, with an opaque overlay and a content &quot;whitebox&quot;. Upon clicking a thumbnail, the popup/overlay divs are made visible and an img tag is placed into the popup (into a div named popup-img, there&apos;s another div which holds the close button in the popup). I have scaled the image height to fit into the popup, which takes up 75% of the screen. So, recap: popup height = 75%; popup-img div height = 100%, and the height of the img tag itself is also set to 100%. The problem I am facing, in FF and IE (not Safari, though) is that the width popup-img div (into which the img tag is written via JS) is staying the width of the original width of the image - not the new scaled width (scaled due to scaling down the height).&lt;br&gt;
&lt;br&gt;
Is there anyway to get the width of the popup div to fit to the new width of the image? This isn&apos;t so much of a problem when the original image height is greater than will fit in the box, and scaled, but when the image height is smaller, it gets scaled &apos;up&apos;, but the width of the pop-up stays to fit the original width, and the image goes outside of the popup width-wise.&lt;br&gt;
&lt;br&gt;
Sorry if this is a confusing explination - it is confusing to me as well.&lt;br&gt;
&lt;br&gt;
Other posibly helpful/hurtful info - the other div inside the popup is the close button - which is floated to the top right. What I would like to happen, ideally - is for the image to be on the left, and the close button on the right, with whitespace under the button. Don&apos;t know if there&apos;s anyway that working with this element will help.&lt;br&gt;
&lt;br&gt;
I can provide more clarification, and possibly a link to the code in question, if someone is interested in helping me out :D&lt;br&gt;
&lt;br&gt;
Thanks ahead of time!!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.125786</guid>
	<pubDate>Thu, 25 Jun 2009 09:43:14 -0800</pubDate>
	<category>css</category>
	<category>div</category>
	<category>firefox</category>
	<category>html</category>
	<category>ie</category>
	<category>image</category>
	<category>img</category>
	<category>popup</category>
	<dc:creator>theRussian</dc:creator>
	</item>
	<item>
	<title>Multiple versions of IE</title>
	<link>http://ask.metafilter.com/121135/Multiple%2Dversions%2Dof%2DIE</link>	
	<description>In Windows XP, what is the best way to keep Internet Explorer versions 6, 7, and 8 all installed simultaneously? This is for the purpose of testing websites. &lt;br&gt;
When I say &quot;best&quot;, I mean the browsers should function normally, and it should be unlikely to cause other problems with the system.&lt;br&gt;
I&apos;ve seen &lt;a href=&quot;http://tredosoft.com/Multiple_IE&quot;&gt;Multiple-IE&lt;/a&gt;, from 2006, which doesn&apos;t seem to go past IE6, and &lt;a href=&quot;http://finalbuilds.edskes.net/iecollection.htm&quot;&gt;Internet Explorer Collection&lt;/a&gt; which looks promising. But I&apos;m hesitant to install strange hacks until I&apos;ve had some input from people more knowledgeable. Do any of you have experience doing this?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.121135</guid>
	<pubDate>Sun, 03 May 2009 10:29:57 -0800</pubDate>
	<category>IE</category>
	<category>IE6</category>
	<category>internetExplorer</category>
	<category>Windows</category>
	<category>windowsXP</category>
	<category>XP</category>
	<dc:creator>kidbritish</dc:creator>
	</item>
	<item>
	<title>Help me fix my wordpress theme for internet explorer? (YAML)</title>
	<link>http://ask.metafilter.com/120122/Help%2Dme%2Dfix%2Dmy%2Dwordpress%2Dtheme%2Dfor%2Dinternet%2Dexplorer%2DYAML</link>	
	<description>Web design panic! Wordpress theme (YAML + sandbox) implodes on impact with internet explorer So, I made a swell website. Was all clever and used &lt;a href=&quot;http://www.yaml.de/en/&quot;&gt;Yet Another Multicolumn Layout&lt;/a&gt; as a CSS/XHTML framework, smashed together with the classic &lt;a href=&quot;http://www.plaintxt.org/themes/sandbox/&quot;&gt;sandbox&lt;/a&gt; theme framework for wordpress.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://api.browsershots.org/png/512/7c/7c2951e9f3c6ec8cc021aa158c2f56e2.png&quot;&gt;Great success&lt;/a&gt;! Until I &lt;a href=&quot;http://api.browsershots.org/png/original/25/25aec26008523181d71147b661d62816.png&quot;&gt;tested it in internet explorer&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I&apos;ve tried perusing the various CSS bug fixes/diagnoses, even within the YAML documentation. But at this point I&apos;m ready to throw things through windows (the glass kind). So I thought I&apos;d try asking for help.&lt;br&gt;
&lt;br&gt;
Site is &lt;a href=&quot;http://digitalexploration.org/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;. Rather than posting all my source files, I think it best to let people poke around using Firebug so they can see it all in action.&lt;br&gt;
&lt;br&gt;
Basic idea is: header, then two 50% columns with the main content. Right column then has two more 50% columns after its main content box. All of the columns go screwy in IE. And something&apos;s up with the header image too. YAML has some built-in functionality for dealing with IE bugs, but it also has two different ways of doing columns (&lt;a href=&quot;http://www.yaml.de/en/documentation/basics/xhtml-source-code.html&quot;&gt;default method&lt;/a&gt;, but then also &lt;a href=&quot;http://www.yaml.de/en/documentation/practice/subtemplates.html&quot;&gt;subtemplates&lt;/a&gt;, which I&apos;ve worked in as well (clearly not successfully)) not sure how to work it in, or if I&apos;ve already hopelessly messed things up with my own tweaks.&lt;br&gt;
&lt;br&gt;
Stylesheets:&lt;br&gt;
YAML &lt;a href=&quot;http://digitalexploration.org/wordpress-content/themes/digex/yaml/core/base.css&quot;&gt;base stylesheet&lt;/a&gt;&lt;br&gt;
Base &lt;a href=&quot;http://digitalexploration.org/wordpress-content/themes/digex/css/content.css&quot;&gt;content styles&lt;/a&gt; (somewhat modified, but not much/any layout stuff)&lt;br&gt;
**&lt;a href=&quot;http://digitalexploration.org/wordpress-content/themes/digex/css/basemod.css&quot;&gt;The rest (including the layout styles)&lt;/a&gt;**&lt;br&gt;
&lt;br&gt;
I can post more details, etc if needed...</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.120122</guid>
	<pubDate>Tue, 21 Apr 2009 15:48:30 -0800</pubDate>
	<category>columns</category>
	<category>css</category>
	<category>float</category>
	<category>help</category>
	<category>ie</category>
	<category>resolved</category>
	<category>webdesign</category>
	<category>webdev</category>
	<category>wordpress</category>
	<category>yaml</category>
	<dc:creator>yuletide</dc:creator>
	</item>
	<item>
	<title>Tools for Diagnosing unviewable Joomla website in IE?</title>
	<link>http://ask.metafilter.com/118416/Tools%2Dfor%2DDiagnosing%2Dunviewable%2DJoomla%2Dwebsite%2Din%2DIE</link>	
	<description>Having problems viewing my Joomla built website in IE.  Works fine in Firefox.  The Website is at &lt;a href=&quot;http://www.alchemicalnursery.org&quot;&gt;www.alchemicalnursery.org&lt;/a&gt;

Are there any tools for diagnosing this?  Or does anyone have any knowledge of what the problem might be.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.118416</guid>
	<pubDate>Thu, 02 Apr 2009 05:20:41 -0800</pubDate>
	<category>IE</category>
	<category>joomla</category>
	<category>Problem</category>
	<category>website</category>
	<dc:creator>franklen</dc:creator>
	</item>
	<item>
	<title>IE scrollbars shifting placement of centered background image!</title>
	<link>http://ask.metafilter.com/112655/IE%2Dscrollbars%2Dshifting%2Dplacement%2Dof%2Dcentered%2Dbackground%2Dimage</link>	
	<description>CSSfilter:  Explorer&apos;s scroll bars shift &lt;a href=&quot;http://robsdemo.com/test.shtml&quot;&gt;my design&apos;s&lt;/a&gt; centered background image &lt;a href=&quot;http://robsdemo.com/test/BG_Too_High.jpg&quot;&gt;up&lt;/a&gt; or &lt;a href=&quot;http://robsdemo.com/test/BG_Too_Low.jpg&quot;&gt;down&lt;/a&gt; by about ten pixels when the browser width is less than 880 pixels wide (in other words, on a laptop).  Arrgh!  It should look like &lt;a href=&quot;http://robsdemo.com/test/BG_ok.jpg&quot;&gt;this&lt;/a&gt;.  Is there a better way to force a centered background image to really be CENTERED?!? I&apos;m redesigning my portfolio.  The new design is based on an 880px by 420px block (a div).  Inside that div are other divs being slid into place when a link is clicked.  I&apos;m using a background image to add a 5px black outline and shadow effect around the 880x420 block...&lt;br&gt;
&lt;br&gt;
...but IE is screwing up the placement of the background outline/shadow when a bottom scrollbar first appears.&lt;br&gt;
&lt;br&gt;
The issue might be that, for whatever reason, IE is adjusting the placement of the background image but not the placement of the div when the scrollbars appear?  Or vice versa.  Either way, it makes the design look like crap when it happens, so I need to find a fix!&lt;br&gt;
&lt;br&gt;
I&apos;m centering the background image in the body section of my css.  It works perfectly everywhere except in IE when the viewable browser space is right around 880 px, which seems to happen a lot in laptops.&lt;br&gt;
&lt;br&gt;
Any tips or tricks here?  Got a fix?  I&apos;m at a loss!&lt;br&gt;
&lt;br&gt;
Just for the record, I&apos;m a Mac guy and am borrowing a friend&apos;s laptop for testing purposes.  Coding by hand.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.112655</guid>
	<pubDate>Mon, 26 Jan 2009 21:11:05 -0800</pubDate>
	<category>backgroundimage</category>
	<category>css</category>
	<category>explorer</category>
	<category>IE</category>
	<category>webdesign</category>
	<dc:creator>2oh1</dc:creator>
	</item>
	<item>
	<title>Ubuntu + Virtual Box + ??? = profit </title>
	<link>http://ask.metafilter.com/109697/Ubuntu%2DVirtual%2DBox%2Dprofit</link>	
	<description>Is it wise to setup Ubuntu for my parents virtual box for ie? So I&apos;m basicly sick and tired of getting phone calls from my parents asking me why there computer isn&apos;t work or why it&apos;s soo slow. The only thing really stoping me from putting ubuntu is the fact my father need IE (activeX to be exact) for work. Would Virtual Box with IE be more of headache then the current setup?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.109697</guid>
	<pubDate>Sat, 20 Dec 2008 10:57:37 -0800</pubDate>
	<category>box</category>
	<category>IE</category>
	<category>machine</category>
	<category>parents</category>
	<category>ubuntu</category>
	<category>virtual</category>
	<dc:creator>erifneerg</dc:creator>
	</item>
	<item>
	<title>IE is horrible</title>
	<link>http://ask.metafilter.com/109002/IE%2Dis%2Dhorrible</link>	
	<description>Internet explorer browser makes a clicking noise on links.... make it stop, please! Sometimes, I am forced to use IE browser (I don&apos;t know which version or anything, but it can&apos;t be more than a year old). I cannot avoid this. However, each time I click on a link, the browser makes a clicking noise. It is not the mouse. It does not seem to be the computer. I am 99% sure it is IE. However, I have done a quick look at the tools tabs and nothing jumps out at me. please, please, make it stop! (and save my fragile sanity)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.109002</guid>
	<pubDate>Thu, 11 Dec 2008 12:41:02 -0800</pubDate>
	<category>clickyclickyclickydie</category>
	<category>IE</category>
	<dc:creator>Jacen</dc:creator>
	</item>
	<item>
	<title>IE JavaScript woes</title>
	<link>http://ask.metafilter.com/104637/IE%2DJavaScript%2Dwoes</link>	
	<description>I&apos;m trying to come up with a generalized comic viewer using just JavaScript. I have a solution that works in nearly all browsers, but fails miserably in Internet Explorer (several versions). I don&apos;t have easy access to a Windows machine, and wonder if anyone could help me figure out what I&apos;m doing wrong (specifically for IE). The main site is at: &lt;a href=&quot;http://jamesburnsdesign.com/comics/gwg.html&quot;&gt;http://jamesburnsdesign.com/comics/gwg.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://jamesburnsdesign.com/comics/comicScript.js&quot;&gt;The JS file is at: http://jamesburnsdesign.com/comics/comicScript.js&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I&apos;m sure I&apos;m just doing something stupid, and would appreciate any insights the hive mind could share with me...&lt;br&gt;
&lt;br&gt;
Thanks in advance.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.104637</guid>
	<pubDate>Sun, 19 Oct 2008 12:28:29 -0800</pubDate>
	<category>Explorer</category>
	<category>IE</category>
	<category>Internet</category>
	<category>javascript</category>
	<category>resolved</category>
	<dc:creator>jpburns</dc:creator>
	</item>
	<item>
	<title>Does IE7-like RSS Reader exist for FireFox?</title>
	<link>http://ask.metafilter.com/102954/Does%2DIE7like%2DRSS%2DReader%2Dexist%2Dfor%2DFireFox</link>	
	<description>I love IE7&apos;s built-in RSS/feed reader.  I hate, hate, hate IE7&apos;s slowness and general, overal crapiness.  I would love to use FireFox, but I want the same kind of RSS reader functionality.  Is there is a plugin or extension for Firefox that exists and works just like IE7&apos;s RSS reader? I am looking for the exact same or as close as possible functionality for an RSS reader in FireFox as found build-in in IE7.  I&apos;d like it to integrate into the browser.  I can&apos;t stand FireFox&apos;s live bookmarks.&lt;br&gt;
&lt;br&gt;
Things I&apos;m not looking for:  Web-based RSS readers, desktop RSS clients, or FireFox extensions/plugins that don&apos;t work like how IE7&apos;s functionality does.&lt;br&gt;
&lt;br&gt;
Does this kind of tool/functionality/plugin/extension exist for Firefox?&lt;br&gt;
&lt;br&gt;
(btw, I&apos;m running the current version of Firefox).&lt;br&gt;
&lt;br&gt;
Thanks.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.102954</guid>
	<pubDate>Mon, 29 Sep 2008 10:35:49 -0800</pubDate>
	<category>Browser</category>
	<category>Explorer</category>
	<category>FireFox</category>
	<category>IE</category>
	<category>Internet</category>
	<dc:creator>karizma</dc:creator>
	</item>
	<item>
	<title>IE 8 beta has crashed and burned...</title>
	<link>http://ask.metafilter.com/101468/IE%2D8%2Dbeta%2Dhas%2Dcrashed%2Dand%2Dburned</link>	
	<description>IE 8 Beta has gone corrupted, and is causing all sorts of iertutil.dll related errors. Something went awry with the install of IE 8 in my freshly installed XP SP3 machine. I generally use Firefox for my browsing needs, but certain apps make calls for web data (the WoW launcher news feed, for example) and this causes a stream of errors &quot;The ordinal 169 could not be located in the dynamic link library iertutil.dll&quot;. IE 8 itself will open on its own, but won&apos;t display anything - the window below each page tab is just blank white.&lt;br&gt;
&lt;br&gt;
I decided to uninstall and then go back and install IE 7, however the uninstall process seems to have gone pear-shaped - the first time around I was able to go to Add/Remove Windows Components and remove IE, and on reboot try to use the IE 7 install exe. However, it looks like the uninstall never removed the files, and IE 7 won&apos;t install because it thinks IE8 is still installed. IE 8 won&apos;t install again because it thinks there&apos;s still a browser there. Add/Remove Components still has an entry for IE 8, but it&apos;s listed as 0.0 MB and any further removal attempts net no change... the progress bar flashes by in a second or so, but no files are removed, the entry is still there, and the error persists.&lt;br&gt;
&lt;br&gt;
My specific question is - will replacing the iertutil.dll file in system32 correct this issue? I was able to move a fresh copy of the file from the temp dir that IE 8&apos;s failed re-install created, but I&apos;ll need to boot from BartPE or safe mode or something to replace the corrupted copy, since just about every XP process seems to access it (unlocker will shut out the processes using it, but that shuts down most of the OS, which then fires itself back up). So if I boot to DOS or something to replace it, will that cause cataclysmic failures in other areas? Are there predictable further issues elsewhere? Is there another approach I should take?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.101468</guid>
	<pubDate>Thu, 11 Sep 2008 11:10:28 -0800</pubDate>
	<category>IE</category>
	<category>iertutildll</category>
	<category>internetexplorer</category>
	<category>windows</category>
	<category>XP</category>
	<dc:creator>FatherDagon</dc:creator>
	</item>
	<item>
	<title>Help me understand what I need to make my website compliant with IE.</title>
	<link>http://ask.metafilter.com/100059/Help%2Dme%2Dunderstand%2Dwhat%2DI%2Dneed%2Dto%2Dmake%2Dmy%2Dwebsite%2Dcompliant%2Dwith%2DIE</link>	
	<description>Is there a guide to the anticipated differences between IE and Firefox when coding a website? So, I&apos;m coding my first &quot;really real&quot; website for the company I work for. I have a bit of experience in this, but this is my first really large, semi-pro project. As a result, I&apos;m running into the ages old problem where everything looks great in Firefox and Safari, but terrible in IE. IE seems to add spaces, ignore code, change margins and generally run wild.&lt;br&gt;
&lt;br&gt;
Is there any kind of guide to the sort of things I need to be aware of to compensate for IE&apos;s tendency to do as it does?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.100059</guid>
	<pubDate>Mon, 25 Aug 2008 08:41:21 -0800</pubDate>
	<category>firefox</category>
	<category>ie</category>
	<category>webdevelopment</category>
	<dc:creator>GilloD</dc:creator>
	</item>
	<item>
	<title>Transparent .PNGs under Supersleight</title>
	<link>http://ask.metafilter.com/98615/Transparent%2DPNGs%2Dunder%2DSupersleight</link>	
	<description>Web design question about getting transparent .PNGs to show up right under Internet Explorer 6. Internet Explorer 6, as you know from previous threads, doesn&apos;t support transparent .PNGs. So I plugged in a JavaScript solution by the name of Supersleight.js, which is supposed to be the easy workaround.&lt;br&gt;
&lt;br&gt;
It&apos;s working, but there&apos;s just one thing wrong: On top of that beautiful transparent image, IE6 is displaying a &quot;broken image&quot; icon and surrounding it in a border associated with those times when the file is missing. Except it&apos;s not missing, because it&apos;s showing up.&lt;br&gt;
&lt;br&gt;
The visual effect is that of a missing image displayed over a working background. &lt;br&gt;
&lt;br&gt;
Any ideas as to how I screwed this up? Your help much appreciated.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.98615</guid>
	<pubDate>Thu, 07 Aug 2008 14:01:22 -0800</pubDate>
	<category>ie</category>
	<category>supersleight</category>
	<category>webdesign</category>
	<dc:creator>johngoren</dc:creator>
	</item>
	<item>
	<title>How do I take a paged-down screenshot in Internet Explorer using Vista for free without watermarks?</title>
	<link>http://ask.metafilter.com/93119/How%2Ddo%2DI%2Dtake%2Da%2Dpageddown%2Dscreenshot%2Din%2DInternet%2DExplorer%2Dusing%2DVista%2Dfor%2Dfree%2Dwithout%2Dwatermarks</link>	
	<description>How do I take a paged-down screenshot in Internet Explorer using Vista for free without watermarks? I tried using IE Screenshot Pro, but the trial puts a big watermark on everything.  I need the screenshot to page down and stitch it all together.&lt;br&gt;
&lt;br&gt;
The page does not render correctly in FireFox, so no extension for the fox will work for me -- had to be IE.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.93119</guid>
	<pubDate>Tue, 03 Jun 2008 12:34:57 -0800</pubDate>
	<category>IE</category>
	<category>InternetExplorer</category>
	<category>Screenshot</category>
	<category>Vista</category>
	<dc:creator>adi</dc:creator>
	</item>
	<item>
	<title>Google in Internet Explorer but not Firefox?</title>
	<link>http://ask.metafilter.com/92515/Google%2Din%2DInternet%2DExplorer%2Dbut%2Dnot%2DFirefox</link>	
	<description>Google search problems here. I&apos;ve asked around the local tech circle and no one can think up an explanation for this one. Google will load in FF and IE7 - but - I can only execute a search from IE. I&apos;m running XP with the latest final of FF. I have Google as an exemption, so I know it&apos;s not a problem with cookies. I&apos;ve also ran Spybot and Adaware, and both came up clean. Google pings with zero packet loss. This one has got me baffled.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.92515</guid>
	<pubDate>Tue, 27 May 2008 14:13:23 -0800</pubDate>
	<category>browser</category>
	<category>firefox</category>
	<category>google</category>
	<category>IE</category>
	<category>xp</category>
	<dc:creator>AdamOddo</dc:creator>
	</item>
	<item>
	<title>But I don&apos;t wanna cut and paste!</title>
	<link>http://ask.metafilter.com/88786/But%2DI%2Ddont%2Dwanna%2Dcut%2Dand%2Dpaste</link>	
	<description>The Big Boss wants us to track activity created by individual emails he sends, but has no interest in copying his email addresses out of his Address Book (Outlook) into the web-based system we created. So...any ideas on plugins or something for IE that can read his address book and give him an &quot;autofill&quot; in the &quot;to&quot; field or something like that? Or, alternately, allow Outlook to use the webform-created template? (Generated on-the-fly with unique ids for each recipient in the click-urls...let&apos;s us see what they do after they get the email, right?) &lt;br&gt;
&lt;br&gt;
Other ideas very welcome as well. I&apos;m personally allergic to the whole M$ enterprise, so any insight would be helpful.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.88786</guid>
	<pubDate>Mon, 14 Apr 2008 14:54:58 -0800</pubDate>
	<category>entitlement</category>
	<category>ie</category>
	<category>outlook</category>
	<category>webform</category>
	<dc:creator>foxydot</dc:creator>
	</item>
	<item>
	<title>How the hell to get IE to print properly?</title>
	<link>http://ask.metafilter.com/80387/How%2Dthe%2Dhell%2Dto%2Dget%2DIE%2Dto%2Dprint%2Dproperly</link>	
	<description>When using IE 6 or 7 and printing a page from the same website using two different computers, but the same printer, one prints at half a page length and one prints the desired full page. The print preview for each matches the way each prints. I can&apos;t figure this out for the life of me. Anyone?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.80387</guid>
	<pubDate>Mon, 07 Jan 2008 11:00:01 -0800</pubDate>
	<category>IE</category>
	<category>internetexplorer</category>
	<category>printing</category>
	<category>website</category>
	<dc:creator>gman</dc:creator>
	</item>
	<item>
	<title>My Documents files in Internet Explorer favorites</title>
	<link>http://ask.metafilter.com/77954/My%2DDocuments%2Dfiles%2Din%2DInternet%2DExplorer%2Dfavorites</link>	
	<description>How do I keep the contents of the My Documents folder from showing up in Internet Explorer favorites? Most of my coworkers use Internet Explorer 7 on Windows XP, and today one of them told me that when she clicks on Favorites in IE, every file from her My Documents folder is displayed there.  At first I thought she&apos;d accidentally copied and pasted a bunch of shortcuts somehow.  But then I had her make a new Word doc and save it to My Documents as Fake.doc, and sure enough, it showed up in the IE favorites right away.&lt;br&gt;
&lt;br&gt;
I looked through her IE settings, but I didn&apos;t find anything related to My Documents.  Then I opened the My Documents folder and checked the settings in Folder Options just in case, but I didn&apos;t see anything there, either.  Is this some kind of Internet Explorer/Windows Explorer conflation?&lt;br&gt;
&lt;br&gt;
I suppose I could have her remove Fake.doc from her IE favorites and see if the document itself is deleted from My Documents.  But even if the document isn&apos;t deleted and she&apos;s safe to remove all those documents from her favorites, I&apos;d still like to know how it happened.&lt;br&gt;
&lt;br&gt;
(I&apos;m not really a tech support person; I&apos;ve just been labeled as The Girl Down The Hall Who Knows About Computers.)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.77954</guid>
	<pubDate>Wed, 05 Dec 2007 22:24:48 -0800</pubDate>
	<category>bookmarks</category>
	<category>favorites</category>
	<category>ie</category>
	<category>internetexplorer</category>
	<category>mydocuments</category>
	<category>windows</category>
	<category>xp</category>
	<dc:creator>bluishorange</dc:creator>
	</item>
	<item>
	<title>How to Fix input title attribute in IE6?</title>
	<link>http://ask.metafilter.com/77459/How%2Dto%2DFix%2Dinput%2Dtitle%2Dattribute%2Din%2DIE6</link>	
	<description>Why does this text box input have its title flash on and off when I hover over it, and more importantly how do I fix it?  When a user hovers over the box the title should just stay. I made this flash recording to display the behavior:&lt;br&gt;
&lt;a href=&quot;http://www.blendedtechnologies.com/wp-content/uploads/2007/11/IE6_Flashing_InputTextBox_title.swf&quot;&gt;IE6_Flashing_InputTextBox_title.swf&lt;/a&gt;&lt;br&gt;
(sorry for the poor quality.)&lt;br&gt;
&lt;br&gt;
As you can see I have a text box with a title attribute.  I hover my mouse over the text box, and the title will appear for a moment, my mouse changes to a pointer, the title dissapears, my mouse changes to the text thingy, title appears and so on ...&lt;br&gt;
&lt;br&gt;
Please help, I&apos;m stuck.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.77459</guid>
	<pubDate>Thu, 29 Nov 2007 16:29:47 -0800</pubDate>
	<category>CSS</category>
	<category>HTML</category>
	<category>IE</category>
	<category>title</category>
	<dc:creator>GregX3</dc:creator>
	</item>
	<item>
	<title>Fixing Google Desktop links</title>
	<link>http://ask.metafilter.com/72383/Fixing%2DGoogle%2DDesktop%2Dlinks</link>	
	<description>I like &lt;a href=&quot;http://desktop.google.com/&quot;&gt;Google Desktop&lt;/a&gt; but there is one minor annoyance that has been bugging me. Whenever I click on a link in a sidebar gadget, that link loads in IE7, even though my default browser is Firefox. Is there a solution to this? I&apos;m on Windows Vista, if that helps (or hurts).</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.72383</guid>
	<pubDate>Tue, 25 Sep 2007 15:27:02 -0800</pubDate>
	<category>firefox</category>
	<category>google</category>
	<category>IE</category>
	<category>links</category>
	<category>problems</category>
	<category>troubleshooting</category>
	<dc:creator>Aanidaani</dc:creator>
	</item>
	<item>
	<title>How do I open certain sites in IETab?</title>
	<link>http://ask.metafilter.com/72195/How%2Ddo%2DI%2Dopen%2Dcertain%2Dsites%2Din%2DIETab</link>	
	<description>I use Firefox. I want to be able to open certain sites in IETab/Internet Explorer automatically. I can do this quite easily &lt;a href=&quot;http://lifehacker.com/software/firefox-tip/automatically-open-firefox-bookmarks-in-ie-tab-299406.php&quot;&gt;if they are bookmarked&lt;/a&gt;, but I want to be able to do it every time I come across a link to the site. Example 1] I&apos;m browsing the web, and I come across a link to foo.com. Normally, when I click the link to foo.com, it will open in a normal Firefox tab. I want to be able to just click the link to foo.com, and have it open in IETab/Internet Explorer automatically, &lt;strong&gt;without having to right click and choose &quot;Open in IETab&quot;, or copy the URL from the address bar and paste it into Internet Explorer.&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Example 2] I do a Foo.com search from the Firefox search bar. I want the search tab to open in IETab/Internet Explorer automatically.&lt;br&gt;
&lt;br&gt;
I have been using IE View Lite, which will load the site in IE after half a second, but Firefox still starts to load foo.com before IE View Lite takes over, which I don&apos;t want. I want Firefox to never load foo.com &lt;em&gt;AT ALL&lt;/em&gt;.&lt;br&gt;
&lt;br&gt;
How can I get this functionality? Example 2 is the more pressing problem, if that makes any difference.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.72195</guid>
	<pubDate>Sun, 23 Sep 2007 07:36:27 -0800</pubDate>
	<category>addon</category>
	<category>extension</category>
	<category>firefox</category>
	<category>IE</category>
	<category>ietab</category>
	<category>internet</category>
	<category>internetexplorer</category>
	<dc:creator>Rabulah</dc:creator>
	</item>
	<item>
	<title>Firefox freezes when downloading, help!</title>
	<link>http://ask.metafilter.com/71213/Firefox%2Dfreezes%2Dwhen%2Ddownloading%2Dhelp</link>	
	<description>I download a lot of images from the net. Using Firefox, the browser freezes while the file downloads. IE does not. I hate using IE. How do I make Firefox allow me to surf around while downloading? I should add this is only the case when I use right click, &quot;save as,&quot; and not when I click a prompted download. I think it happens for all files downloaded this way, not just images.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.71213</guid>
	<pubDate>Mon, 10 Sep 2007 11:51:02 -0800</pubDate>
	<category>download</category>
	<category>Firefox</category>
	<category>IE</category>
	<category>images</category>
	<category>internetexplorer</category>
	<dc:creator>yellowbinder</dc:creator>
	</item>
	
	</channel>
</rss>

