<?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 firefox and ie</title>
      <link>http://ask.metafilter.com/tags/firefox+ie</link>
      <description>Questions tagged with 'firefox' and 'ie' at Ask MetaFilter.</description>
	  <pubDate>Wed, 23 Sep 2009 09:51:32 -0800</pubDate> <lastBuildDate>Wed, 23 Sep 2009 09:51:32 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<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>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>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>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>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>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>
	<item>
	<title>How to get tabbed browsing past a software filter</title>
	<link>http://ask.metafilter.com/68475/How%2Dto%2Dget%2Dtabbed%2Dbrowsing%2Dpast%2Da%2Dsoftware%2Dfilter</link>	
	<description>Need Tabbed Browsing: Help me get past a software filter (Integrity Enterprise) at work -- all i want to do is run Firefox, or hell, even IE 7.  I just want tabs instead of the twenty separate browser windows that are popping up I have read through previous threads on this question, but none of the suggestions have worked for me.  My company has Integrity Advanced Server running and it blocks any attempts to run any applications that aren&apos;t on a pre-set approved list that&apos;s defined at the network level.  I also can&apos;t install any toolbars on the approved IE 6 client. I&apos;ve called IT and pleaded with them about letting me run  Firefox, but a decision on that is &quot;in committee&quot; and has been pending for months now.  Does anyone have any advice on how I can get tabbed browsing functionality under these circumstances?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.68475</guid>
	<pubDate>Fri, 03 Aug 2007 09:32:39 -0800</pubDate>
	<category>Firefox</category>
	<category>IE</category>
	<category>IntegrityEnterprise</category>
	<category>TabBrowsing</category>
	<dc:creator>buddha9090</dc:creator>
	</item>
	<item>
	<title>Download secured content to read later?</title>
	<link>http://ask.metafilter.com/66174/Download%2Dsecured%2Dcontent%2Dto%2Dread%2Dlater</link>	
	<description>How can I download/cache web pages that require cookies and/or a login for later reading in Firefox (or IE). 

Is there a spider plugin for either browsers, or a stand alone program that will support authentication? I&apos;m going away to somewhere I likely won&apos;t have internet access full time. I&apos;d love to be able to download my livejournal friends page and some other pages for reading offline. Say, the root page plus 1 level of links deep, for articles and content not on the main page. &lt;br&gt;
&lt;br&gt;
The hard part: many of the pages I want are password or login protected. NYT premium content, private livejournal pages, etc.&lt;br&gt;
&lt;br&gt;
IE6 used to be able to do this, but it looks like they&apos;ve dropped the feature in 7. I&apos;ve tried HTTrack, Getright, Flashget and wget, but can&apos;t get around the cookies/login issue.&lt;br&gt;
&lt;br&gt;
I think I need to do this from inside IE or Firefox, so that I can take advantage of pre-existing cookies, but I can&apos;t seem to find a way. Please help.&lt;br&gt;
&lt;br&gt;
Otherwise, is there a way to use getright, flashget or some other caching-downloader to authenticate before downloading?&lt;br&gt;
&lt;br&gt;
This is on Vista Ultimate with FF2 or IE7.&lt;br&gt;
&lt;br&gt;
I&apos;d even be willing to pay for software if it does a good job, so free is not a requirement.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.66174</guid>
	<pubDate>Tue, 03 Jul 2007 13:47:46 -0800</pubDate>
	<category>browsing</category>
	<category>firefox</category>
	<category>ie</category>
	<category>offline</category>
	<category>spider</category>
	<category>surfing</category>
	<dc:creator>tiamat</dc:creator>
	</item>
	<item>
	<title>Cant see preview thumbs with FireFox or IE!</title>
	<link>http://ask.metafilter.com/65357/Cant%2Dsee%2Dpreview%2Dthumbs%2Dwith%2DFireFox%2Dor%2DIE</link>	
	<description>Unable to view preview pictures on webpages I recently noticed that on some web sites that have preview thumbs like iGoogles &quot;add stuff to your home page&quot; i can not see the previewed thumbs, only the text link and add it now buttons. I have noticed this on other websites as well. This seems to be like this on both Firefox and Internet Explorer. I reinstalled Java and have flash installed as well. but no go. What else should I check?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.65357</guid>
	<pubDate>Thu, 21 Jun 2007 20:14:48 -0800</pubDate>
	<category>firefox</category>
	<category>IE</category>
	<category>Internet</category>
	<category>techsupport</category>
	<category>web</category>
	<dc:creator>slowtree</dc:creator>
	</item>
	<item>
	<title>How can I open a specific web shortcut (from the desktop) in a specific web browser?</title>
	<link>http://ask.metafilter.com/62008/How%2Dcan%2DI%2Dopen%2Da%2Dspecific%2Dweb%2Dshortcut%2Dfrom%2Dthe%2Ddesktop%2Din%2Da%2Dspecific%2Dweb%2Dbrowser</link>	
	<description>How can I open a specific web shortcut (from the desktop) in a specific web browser? I can&apos;t believe this is as hard as I&apos;m finding it to be so perhaps I&apos;m missing something very very simple.&lt;br&gt;
&lt;br&gt;
I have created a shortcut to a website that will only work in IE. I also have Firefox setup on this machine so that it is the default web browser. I want the user to use Firefox for almost everything web related they do, expect for this one site.&lt;br&gt;
&lt;br&gt;
To make things simple on them, I put a copy of this shortcut on their desktop. I know if they open the shortcut from within IE&apos;s Favorites, they can go there no problem. But from the desktop, Firefox is the browser that gets launched and the site won&apos;t work in it. I&apos;m really trying to make things as dead simple as I can for this lady.&lt;br&gt;
&lt;br&gt;
So is this possible, or is she just going to have to go into IE and then launch it from there?&lt;br&gt;
&lt;br&gt;
Thanks for any help you can provide folks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.62008</guid>
	<pubDate>Sat, 05 May 2007 13:34:01 -0800</pubDate>
	<category>browsers</category>
	<category>Firefox</category>
	<category>IE</category>
	<dc:creator>covert7</dc:creator>
	</item>
	<item>
	<title>server not found on first request</title>
	<link>http://ask.metafilter.com/61116/server%2Dnot%2Dfound%2Don%2Dfirst%2Drequest</link>	
	<description>&quot;server not found&quot; problems in Firefox 2 and IE 7 ... I have recently developed a consistent problem with server not found errors in FF and IE, request will load on a second refresh of the request this topic has been explored &lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?p=2533542&quot;&gt;in depth elsewhere&lt;/a&gt; i am hoping the friendly folks as ask me might be able to help solve this one? i suspect the browser issues are symptom of system issues. side note: using netmon i have consistent network connections so thats not the issue...</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.61116</guid>
	<pubDate>Sun, 22 Apr 2007 15:30:12 -0800</pubDate>
	<category>firefox</category>
	<category>found</category>
	<category>IE</category>
	<category>not</category>
	<category>server</category>
	<dc:creator>specialk420</dc:creator>
	</item>
	<item>
	<title>Can&apos;t get back to where I was in Firefox</title>
	<link>http://ask.metafilter.com/57164/Cant%2Dget%2Dback%2Dto%2Dwhere%2DI%2Dwas%2Din%2DFirefox</link>	
	<description>Using Firefox on some web sites, if you scroll down from the top of the page, select a link, and then hit the back arrow to return the original page, the original page does not return to where you were when you clicked the link, but annoyingly to the top of the page, requiring a manual scroll to get where you were before. This doesn&apos;t happen with IE on the same web sites. What causes this problem? For example &lt;a href=&quot;http://sadlyno.com/&quot;&gt;http://sadlyno.com/&lt;/a&gt; or &lt;a href=&quot;http://seattletimes.nwsource.com&quot;&gt;http://seattletimes.nwsource.com&lt;/a&gt;</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.57164</guid>
	<pubDate>Sat, 17 Feb 2007 10:49:42 -0800</pubDate>
	<category>firefox</category>
	<category>html</category>
	<category>ie</category>
	<dc:creator>ShooBoo</dc:creator>
	</item>
	<item>
	<title>How to create a CrossBrowser Bookmarklet?</title>
	<link>http://ask.metafilter.com/55710/How%2Dto%2Dcreate%2Da%2DCrossBrowser%2DBookmarklet</link>	
	<description>I have written a bookmarklet that works in Firefox but not in IE6.  How can I change it to be supported cross browser or even as a separate bookmarklet to get the same results. javascript:Qr=document.getSelection();if(Qr)location.href=&apos;http://jobsearchlog.com/ba.cfm?ad=&apos;+escape(Qr)+&apos;&amp;amp;description=&apos;+encodeURIComponent(document.title)+&apos;&amp;amp;tags=%s&apos;+&apos;&amp;amp;ad4user=mickbw&amp;amp;url2job=&apos;+window.location.href;&lt;br&gt;
&lt;br&gt;
Much of the JS was taken from the send to Delicious bookmarklet but I&apos;ve never seen it work in IE anyway.&lt;br&gt;
&lt;br&gt;
The purpose of the &apos;let is to send whatever text in a page has been selected, the URL and page title and submit the values into a database for use in my web application.  In Firefox they would also be able to specify tags to be included in the insert. &lt;br&gt;
&lt;br&gt;
Any suggestions on making this work in IE?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.55710</guid>
	<pubDate>Wed, 24 Jan 2007 22:08:15 -0800</pubDate>
	<category>bookmarklet</category>
	<category>firefox</category>
	<category>IE</category>
	<category>Javascript</category>
	<dc:creator>mickbw</dc:creator>
	</item>
	<item>
	<title>Firefox Issue</title>
	<link>http://ask.metafilter.com/55273/Firefox%2DIssue</link>	
	<description>Why, when I look at an image or news link in firefox, do I not see the whole tooltip/caption (not sure that&apos;s the right word, but it&apos;s all I can think of)?  When looking at my two favourite web comics,  XKCD &amp;amp; Qwantz, if I look at the images in IE, it shows the full humourous caption/tooltip, yet when I view it in Firefox it shows part of the text then....  &lt;br&gt;
&lt;br&gt;
I hate to use IE, but find myself frustrated and not being able to see the little jokes added as captions?&lt;br&gt;
&lt;br&gt;
Is there a reason for this, or an extension that allows me to see them, without having to switch rendering engines, or open them in IE?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.55273</guid>
	<pubDate>Thu, 18 Jan 2007 01:49:56 -0800</pubDate>
	<category>firefox</category>
	<category>IE</category>
	<dc:creator>the_epicurean</dc:creator>
	</item>
	<item>
	<title>Help!  My Web Browsers Are Giving Up!</title>
	<link>http://ask.metafilter.com/49486/Help%2DMy%2DWeb%2DBrowsers%2DAre%2DGiving%2DUp</link>	
	<description>My web browsers (FF 2.0 and IE 7 on XP SP2) have stopped working (kinda).  I have to click on links over and over again to get the browsers to respond.  When they do finally go to the page, they usually load half of it and give up.  This started while I was still on FF 1.5 but seems to have gotten worse. It takes a lot of going to Gmail to get it to &quot;take.&quot;  With my bookmarks, if I click on them directly nothing happens, but if i middle-click to open them in a new window sometimes it works, sometimes not.  If I copy-paste the URL I want to go to and hit the &quot;go&quot; button 15 times really fast, it will go, but may only load half the page.  This is happening on every &quot;account&quot; on my computer (I created another user account besides the admin account I always use on my PC and it had the same problem).  It&apos;s happening in both IE and FF.  I&apos;d really like to avoid a total re-install of windows.  Any ideas?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.49486</guid>
	<pubDate>Thu, 26 Oct 2006 11:12:26 -0800</pubDate>
	<category>browser</category>
	<category>computers</category>
	<category>firefox</category>
	<category>ie</category>
	<dc:creator>adi</dc:creator>
	</item>
	<item>
	<title>Firefox in an IE costume?</title>
	<link>http://ask.metafilter.com/48457/Firefox%2Din%2Dan%2DIE%2Dcostume</link>	
	<description>My work intranet autodetects my Firefox browser and forces me to use IE.  Is there a plugin that I can get that will make Firefox masquerade as IE, so I can surf my intranet with my favorite browser?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.48457</guid>
	<pubDate>Thu, 12 Oct 2006 13:13:21 -0800</pubDate>
	<category>browser</category>
	<category>detection</category>
	<category>firefox</category>
	<category>ie</category>
	<dc:creator>mtstover</dc:creator>
	</item>
	<item>
	<title>Web browser market share reference</title>
	<link>http://ask.metafilter.com/42566/Web%2Dbrowser%2Dmarket%2Dshare%2Dreference</link>	
	<description>What is the definitive online reference for web browser market share? I&apos;ve found &lt;a href=&quot;http://marketshare.hitslink.com/report.aspx?qprid=0&quot;&gt;this site&lt;/a&gt; which looks nice, but I don&apos;t know if it&apos;s the most authoritative site for stating browser statistics. Our company needs to convince a vendor to program a partner site to work in non-IE browsers (Firefox, etc.) and I want to make sure the statistics I&apos;m quoting are reasonably valid.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.42566</guid>
	<pubDate>Thu, 20 Jul 2006 08:29:58 -0800</pubDate>
	<category>browser</category>
	<category>Firefox</category>
	<category>IE</category>
	<category>InternetExplorer</category>
	<category>marketshare</category>
	<category>Mozilla</category>
	<category>Safari</category>
	<category>webbrowser</category>
	<dc:creator>Joleta</dc:creator>
	</item>
	<item>
	<title>Re-installed WinXP Won&apos;t Show CSS Images</title>
	<link>http://ask.metafilter.com/40043/Reinstalled%2DWinXP%2DWont%2DShow%2DCSS%2DImages</link>	
	<description>Re-installed Windows XP on my old laptop (Sony PCG-SRX87). Let it run through all the updates. Now neither IE nor Firefox will show CSS background images. Example: when I view Gmail or Google Spreadsheets, there&apos;s no background images for any of the rows. Searching Google for css, background images, service pack 2, firefox, internet explorer, troubelshooting, etc... checked Internet Options, Windows Firewall, turned off firewall, turned off virus scanner. Any ideas?&lt;br&gt;
&lt;br&gt;
Bonus and maybe related: text sizes in IE are huge. I go to View &amp;gt; Text Size and it is set to Medium but if I got to AOL.com homepage the headlines are massive.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.40043</guid>
	<pubDate>Mon, 12 Jun 2006 20:09:32 -0800</pubDate>
	<category>browsers</category>
	<category>css</category>
	<category>firefox</category>
	<category>ie</category>
	<category>internet</category>
	<category>windows</category>
	<category>windowsxp</category>
	<dc:creator>ao4047</dc:creator>
	</item>
	<item>
	<title>Why won&apos;t my website print?</title>
	<link>http://ask.metafilter.com/35983/Why%2Dwont%2Dmy%2Dwebsite%2Dprint</link>	
	<description>Why won&apos;t my website print in Firefox? I&apos;m trying to print the contents of &lt;a href=&quot;http://www.crystalpalacequartet.co.uk/stringquartetrepertoire.html&quot;&gt;this page&lt;/a&gt; but Firefox (1.5.0.1, WinXP) only prints the first page. This seems to be a &lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?t=388319&amp;highlight=print+first&quot;&gt;known problem&lt;/a&gt; with some pages, though the specific problem doesn&apos;t seem to be listed in bugzilla. I&apos;ve tried putting the data into a table but it makes no difference. Internet Explorer (6.0) prints all the pages, but on some pages the second column of data (the title of the work) is missing. I&apos;ll put this down to IE&apos;s poor handling of CSS.&lt;br&gt;
&lt;br&gt;
The rest of the site prints fine in IE, but FF will only print the first page of data from each web page. What&apos;s wrong with my site? It validates as XHTML Strict &amp;amp; CSS.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.35983</guid>
	<pubDate>Sat, 08 Apr 2006 14:51:39 -0800</pubDate>
	<category>css</category>
	<category>firefox</category>
	<category>ie</category>
	<category>internet_explorer</category>
	<category>print</category>
	<dc:creator>cbrody</dc:creator>
	</item>
	<item>
	<title>Is the new IE broswer, Beta 2 as good as Firefox?</title>
	<link>http://ask.metafilter.com/32955/Is%2Dthe%2Dnew%2DIE%2Dbroswer%2DBeta%2D2%2Das%2Dgood%2Das%2DFirefox</link>	
	<description>Is the beta2 Internet Explorer broswer as good as or a replacement for Firefox? Microsoft has released Beta2 browser for IE browser and claims it is much more secure and makes amends for shortcmings of previous browser, the one that got so many to switch to Firefox. Is it as good as Firefox now?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.32955</guid>
	<pubDate>Mon, 20 Feb 2006 07:36:33 -0800</pubDate>
	<category>browsers</category>
	<category>Firefox</category>
	<category>IE</category>
	<dc:creator>Postroad</dc:creator>
	</item>
	<item>
	<title>What are possible causes for browsers not displaying webpages properly?</title>
	<link>http://ask.metafilter.com/31003/What%2Dare%2Dpossible%2Dcauses%2Dfor%2Dbrowsers%2Dnot%2Ddisplaying%2Dwebpages%2Dproperly</link>	
	<description>What could cause both IE and Firefox not to display certain pages (like expedia.com) correctly? One of my coworkers (who isn&apos;t especially comp-savvy) says he&apos;s having problems with some webpages loading with the layout and/or fonts screwed up.  He was on IE and I got him to switch to Firefox, run AdAware &amp;amp; Spybot and clear his history/cache/temp files but he says it&apos;s still happening and I&apos;m out of suggestions.  He&apos;s tweaked the font sizes up and down but that had no effect.  Anybody have a clue what else it might be?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.31003</guid>
	<pubDate>Tue, 17 Jan 2006 13:05:33 -0800</pubDate>
	<category>browser</category>
	<category>Firefox</category>
	<category>IE</category>
	<dc:creator>parttimesaint</dc:creator>
	</item>
	<item>
	<title>IE pukes on my page</title>
	<link>http://ask.metafilter.com/30133/IE%2Dpukes%2Don%2Dmy%2Dpage</link>	
	<description>My &lt;a href=&quot;http://www.spartacusroosevelt.com&quot;&gt;main page&lt;/a&gt; opens fine in Safari and Firefox for Win and Mac, but acts like I am trying to download a file in IE.  Any suggestions?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.30133</guid>
	<pubDate>Tue, 03 Jan 2006 19:20:36 -0800</pubDate>
	<category>firefox</category>
	<category>ie</category>
	<category>php</category>
	<category>web</category>
	<dc:creator>spartacusroosevelt</dc:creator>
	</item>
	
	</channel>
</rss>

