<?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: Context Hover, adding context &amp; feedback to your links</title>
	<atom:link href="http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 15:34:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Shawn</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-90248</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Tue, 01 Mar 2011 21:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-90248</guid>
		<description>this is almost what ive been looking for. i have a picture that&#039;s image mapped and when i hover over a link on the image, i want the link listed at the bottom of the picture to have the hover effect. any thoughts?</description>
		<content:encoded><![CDATA[<p>this is almost what ive been looking for. i have a picture that&#8217;s image mapped and when i hover over a link on the image, i want the link listed at the bottom of the picture to have the hover effect. any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-60264</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 26 Aug 2010 19:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-60264</guid>
		<description>This was just what I&#039;ve been looking for. Thank you. I knew it was an addclass, but I couldn&#039;t get it to work.</description>
		<content:encoded><![CDATA[<p>This was just what I&#8217;ve been looking for. Thank you. I knew it was an addclass, but I couldn&#8217;t get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Powell</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-50406</link>
		<dc:creator>Josh Powell</dc:creator>
		<pubDate>Mon, 05 Apr 2010 21:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-50406</guid>
		<description>@Kilian - 

You&#039;re right about the caching, nifty usage of closures.  As of jQuery 1.4, when you only pass one function into hover(), it executes it on both mouseenter and mouseleave.</description>
		<content:encoded><![CDATA[<p>@Kilian &#8211; </p>
<p>You&#8217;re right about the caching, nifty usage of closures.  As of jQuery 1.4, when you only pass one function into hover(), it executes it on both mouseenter and mouseleave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kilian Valkhof</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-50388</link>
		<dc:creator>Kilian Valkhof</dc:creator>
		<pubDate>Mon, 05 Apr 2010 18:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-50388</guid>
		<description>Hey Josh, What you forget is the caching of matching elements achieved by using the var, which makes it much faster. You also need to toggle the class &lt;em&gt;again&lt;/em&gt; to remove the hover style on all other a&#039; once you mouseOut again. :)</description>
		<content:encoded><![CDATA[<p>Hey Josh, What you forget is the caching of matching elements achieved by using the var, which makes it much faster. You also need to toggle the class <em>again</em> to remove the hover style on all other a&#8217; once you mouseOut again. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Powell</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-50387</link>
		<dc:creator>Josh Powell</dc:creator>
		<pubDate>Mon, 05 Apr 2010 18:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-50387</guid>
		<description>Oh, neat... I didn&#039;t realize it was meant to highlight all links with the same destination.

$(&#039;a[href]&#039;).hover(function () {
    $(&#039;a[href=&quot;&#039; + $(this).attr(&#039;href&#039;) + &#039;&quot;]&#039;).toggleClass(&#039;hover&#039;);
});</description>
		<content:encoded><![CDATA[<p>Oh, neat&#8230; I didn&#8217;t realize it was meant to highlight all links with the same destination.</p>
<p>$(&#8216;a[href]&#8216;).hover(function () {<br />
    $(&#8216;a[href="' + $(this).attr('href') + '"]&#8216;).toggleClass(&#8216;hover&#8217;);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Powell</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-50386</link>
		<dc:creator>Josh Powell</dc:creator>
		<pubDate>Mon, 05 Apr 2010 18:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-50386</guid>
		<description>Another way to go about this is:

$(&#039;a[href]&#039;).hover(function () {
    $(this).toggleClass(&#039;hover&#039;);
});

the $(&#039;a[href]&#039;) tests for all &#039;a&#039; tags with an href attribute, regardless of what the attribute is set to.</description>
		<content:encoded><![CDATA[<p>Another way to go about this is:</p>
<p>$(&#8216;a[href]&#8216;).hover(function () {<br />
    $(this).toggleClass(&#8216;hover&#8217;);<br />
});</p>
<p>the $(&#8216;a[href]&#8216;) tests for all &#8216;a&#8217; tags with an href attribute, regardless of what the attribute is set to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DESTACAR TODOS OS LINKS DA MESMA URL</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-27249</link>
		<dc:creator>DESTACAR TODOS OS LINKS DA MESMA URL</dc:creator>
		<pubDate>Thu, 06 Aug 2009 12:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-27249</guid>
		<description>[...] site kilianvalkhof.com publicou uma solução em CSS e javascript que permite destacar todos os links de uma página que [...]</description>
		<content:encoded><![CDATA[<p>[...] site kilianvalkhof.com publicou uma solução em CSS e javascript que permite destacar todos os links de uma página que [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Websites you shouldn’t have missed in May 2008 &#124; Noupe</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-10326</link>
		<dc:creator>Websites you shouldn’t have missed in May 2008 &#124; Noupe</dc:creator>
		<pubDate>Thu, 30 Oct 2008 05:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-10326</guid>
		<description>[...] 12- Context Hover, adding context &amp; feedback to your links [...]</description>
		<content:encoded><![CDATA[<p>[...] 12- Context Hover, adding context &#38; feedback to your links [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DON&#8217;T MEASURE: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-7462</link>
		<dc:creator>DON&#8217;T MEASURE: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</dc:creator>
		<pubDate>Tue, 15 Jul 2008 01:13:10 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-7462</guid>
		<description>[...] 12- Context Hover, adding context &amp; feedback to your links [...]</description>
		<content:encoded><![CDATA[<p>[...] 12- Context Hover, adding context &amp; feedback to your links [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DON’T MISS: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</title>
		<link>http://kilianvalkhof.com/2008/css-xhtml/context-hover-adding-context-feedback-to-your-links/comment-page-1/#comment-7244</link>
		<dc:creator>DON’T MISS: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</dc:creator>
		<pubDate>Tue, 08 Jul 2008 09:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://kilianvalkhof.com/?p=69#comment-7244</guid>
		<description>[...] 12- Context Hover, adding context &amp; feedback to your links [...]</description>
		<content:encoded><![CDATA[<p>[...] 12- Context Hover, adding context &amp; feedback to your links [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

