<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Life and Times of Michael Shadle &#187; ie6</title>
	<atom:link href="http://michaelshadle.com/tag/ie6/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelshadle.com</link>
	<description>&#34;Lazy people are efficient.&#34; - My boss.</description>
	<lastBuildDate>Sat, 28 Jan 2012 09:12:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Disappearing text in IE6 and &quot;dead&quot; JavaScript links</title>
		<link>http://michaelshadle.com/2007/12/01/disappearing-text-in-ie6-and-dead-javascript-links</link>
		<comments>http://michaelshadle.com/2007/12/01/disappearing-text-in-ie6-and-dead-javascript-links#comments</comments>
		<pubDate>Sat, 01 Dec 2007 09:31:12 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[annoyances]]></category>
		<category><![CDATA[disappearing text]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://michaelshadle.com/2007/12/01/disappearing-text-in-ie6-and-dead-javascript-links/</guid>
		<description><![CDATA[We discovered a couple little annoyances with IE6, and I thought it would be useful to publish their workarounds. Issue #1: Random text would "disappear" on a page. It actually was still there and would show sometimes after hovering over it. The fix turns out to be setting the CSS for the text in question [...]]]></description>
			<content:encoded><![CDATA[<p>We discovered a couple little annoyances with IE6, and I thought it would be useful to publish their workarounds.</p>
<p>Issue #1:</p>
<p>Random text would "disappear" on a page. It actually was still there and would show sometimes after hovering over it. The fix turns out to be setting the CSS for the text in question to "height: 0.01%" - it's so simple but so needless. It shouldn't have to be done. It should just work.</p>
<p>Issue #2:</p>
<pre class="brush: xml">
&lt;a href="javascript:anything" onclick="something()"&gt;
</pre>
<p>Won't work. It will just act like a dead link (or perhaps just ignore the onclick...) This will work however:</p>
<pre class="brush: xml">
&lt;a href="javascript:something()"&gt;
</pre>
<p>Note: Typically I try to keep my href's to be plain "javascript:;" if I need to use anchor-based links, and then chain events off of it using the element's ID and jQuery.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelshadle.com/2007/12/01/disappearing-text-in-ie6-and-dead-javascript-links/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

