<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Mimicking the :hover Pseudo-class in IE</title>
	<atom:link href="http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/feed" rel="self" type="application/rss+xml" />
	<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 05 Mar 2010 14:53:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<item>
		<title>By: Felicita Wakeman</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-6181</link>
		<dc:creator>Felicita Wakeman</dc:creator>
		<pubDate>Fri, 05 Mar 2010 14:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-6181</guid>
		<description>[..] A little unrelated, but I really liked this website post [..]</description>
		<content:encoded><![CDATA[<p>[..] A little unrelated, but I really liked this website post [..]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaps</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-2472</link>
		<dc:creator>kaps</dc:creator>
		<pubDate>Wed, 22 Jul 2009 15:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-2472</guid>
		<description>Hey thanks a lot.. this is great .. spl since i m prototype user...</description>
		<content:encoded><![CDATA[<p>Hey thanks a lot.. this is great .. spl since i m prototype user&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The IE6 Survival Guide &#171; Ajax-ing Off</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-2365</link>
		<dc:creator>The IE6 Survival Guide &#171; Ajax-ing Off</dc:creator>
		<pubDate>Mon, 13 Jul 2009 19:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-2365</guid>
		<description>[...] there are a number of ways to do this, such as Using Prototype to Mimic the :hover Pseudo Class in IE6 or this Pseudo-Class Fix for Internet [...]</description>
		<content:encoded><![CDATA[<p>[...] there are a number of ways to do this, such as Using Prototype to Mimic the :hover Pseudo Class in IE6 or this Pseudo-Class Fix for Internet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: confuse</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-1940</link>
		<dc:creator>confuse</dc:creator>
		<pubDate>Fri, 12 Jun 2009 18:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-1940</guid>
		<description>What do you mean &quot;HTC only works in IE&quot;?

THIS whole thing is a fix for IE ONLY... other browsers have already got the normal standard and did not need any fix at all....</description>
		<content:encoded><![CDATA[<p>What do you mean &#8220;HTC only works in IE&#8221;?</p>
<p>THIS whole thing is a fix for IE ONLY&#8230; other browsers have already got the normal standard and did not need any fix at all&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hay</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-54</link>
		<dc:creator>Hay</dc:creator>
		<pubDate>Mon, 12 Jan 2009 23:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-54</guid>
		<description>If you don&#039;t need to parse through all stylesheets and simply need to add a &#039;pointer&#039; cursor on non &lt;a&gt; elements IE6 you can do this very easy with jQuery. Simply add a &#039;hover&#039; class to all elements that you want to get a pointer when hovered over and add these jQuery lines:

&lt;code&gt;
    $(&quot;.hover&quot;).hover(
        function() { $(this).css(&#039;cursor&#039;, &#039;pointer&#039;); },
        function() { $(this).css(&#039;cursor&#039;, &#039;&#039;); }
    );</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t need to parse through all stylesheets and simply need to add a &#8216;pointer&#8217; cursor on non <a> elements IE6 you can do this very easy with jQuery. Simply add a &#8216;hover&#8217; class to all elements that you want to get a pointer when hovered over and add these jQuery lines:</p>
<p><code><br />
    $(".hover").hover(<br />
        function() { $(this).css('cursor', 'pointer'); },<br />
        function() { $(this).css('cursor', ''); }<br />
    );</code></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artūras Šlajus</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-49</link>
		<dc:creator>Artūras Šlajus</dc:creator>
		<pubDate>Thu, 13 Nov 2008 23:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-49</guid>
		<description>Here you go - a renewed and pimped version for prototype 1.6 which actually works!

http://arturaz.net/blog/?p=535</description>
		<content:encoded><![CDATA[<p>Here you go &#8211; a renewed and pimped version for prototype 1.6 which actually works!</p>
<p><a href="http://arturaz.net/blog/?p=535" rel="nofollow">http://arturaz.net/blog/?p=535</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Livingston Samuel</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-48</link>
		<dc:creator>Livingston Samuel</dc:creator>
		<pubDate>Wed, 20 Feb 2008 13:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-48</guid>
		<description>I&#039;ve made a  simple solution to make the hover function for non-anchor elements in IE6

&lt;a href=&quot;http://blog.delivi.info/javascript/hover-for-non-anchor-elements-in-ie6/&quot; rel=&quot;nofollow&quot;&gt;Hover for non-anchor elements in IE6&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve made a  simple solution to make the hover function for non-anchor elements in IE6</p>
<p><a href="http://blog.delivi.info/javascript/hover-for-non-anchor-elements-in-ie6/" rel="nofollow">Hover for non-anchor elements in IE6</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Ryzhokhin</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-47</link>
		<dc:creator>Andrew Ryzhokhin</dc:creator>
		<pubDate>Wed, 09 May 2007 07:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-47</guid>
		<description>Hello!

This is cool script!
Good work!
Thank you!

I use this in my project!

--

Be Lucky

&lt;a href=&#039;www.ardas.dp.ua&#039;&gt;www.ardas.dp.ua&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>This is cool script!<br />
Good work!<br />
Thank you!</p>
<p>I use this in my project!</p>
<p>&#8211;</p>
<p>Be Lucky</p>
<p><a href='www.ardas.dp.ua'>http://www.ardas.dp.ua</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K. Adam Christensen</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-46</link>
		<dc:creator>K. Adam Christensen</dc:creator>
		<pubDate>Sun, 22 Apr 2007 09:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-46</guid>
		<description>well, this should be pretty easy to make it into something jQuery would like.

&lt;typo:code&gt;
function HoverBehavior() {
  $.each(document.styleSheets, function(i, stylesheet) {
    $.each(stylesheet.rules, function(j, rule) {
      if( rule.selectorText.match(/:hover/i) ) {
        stylesheet.addRule( rule.selectorText.replace(/:hover/ig, &#039;.hover&#039;), rule.style.cssText );
      }
    });
  });

  $.each(arguments, function(i, arg) {
    $(arg).each( function(j) {
      $(this).hover(function() {
          $(this).addClass(&quot;hover&quot;);
        },function() {
          $(this).removeClass(&quot;hover&quot;);
      });
    });
  });
}
&lt;/typo:code&gt;

That&#039;s just a quick stab at it.  My first time using jQuery, although I did not test it so I don&#039;t know if it works. :)</description>
		<content:encoded><![CDATA[<p>well, this should be pretty easy to make it into something jQuery would like.</p>
<p><typo :code><br />
function HoverBehavior() {<br />
  $.each(document.styleSheets, function(i, stylesheet) {<br />
    $.each(stylesheet.rules, function(j, rule) {<br />
      if( rule.selectorText.match(/:hover/i) ) {<br />
        stylesheet.addRule( rule.selectorText.replace(/:hover/ig, &#8216;.hover&#8217;), rule.style.cssText );<br />
      }<br />
    });<br />
  });</p>
<p>  $.each(arguments, function(i, arg) {<br />
    $(arg).each( function(j) {<br />
      $(this).hover(function() {<br />
          $(this).addClass(&#8220;hover&#8221;);<br />
        },function() {<br />
          $(this).removeClass(&#8220;hover&#8221;);<br />
      });<br />
    });<br />
  });<br />
}<br />
</typo></p>
<p>That&#8217;s just a quick stab at it.  My first time using jQuery, although I did not test it so I don&#8217;t know if it works. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: e</title>
		<link>http://shifteleven.com/articles/2006/12/14/mimicking-the-hover-pseudo-class-in-ie/comment-page-1#comment-45</link>
		<dc:creator>e</dc:creator>
		<pubDate>Fri, 20 Apr 2007 10:54:13 +0000</pubDate>
		<guid isPermaLink="false">http://dev.fecalrod.com/?p=21#comment-45</guid>
		<description>to bad im a jquery guy.......I NEED THIS but i dont want to use prototype too....

eh o well.</description>
		<content:encoded><![CDATA[<p>to bad im a jquery guy&#8230;&#8230;.I NEED THIS but i dont want to use prototype too&#8230;.</p>
<p>eh o well.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
