<?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>Sean Gates' Blog &#187; jQuery</title>
	<atom:link href="http://www.seangates.com/category/web-development/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seangates.com</link>
	<description>By the looks of it {he thinks} he knows what he's doing.</description>
	<lastBuildDate>Sat, 10 Jul 2010 21:22:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>jQuery Gem</title>
		<link>http://www.seangates.com/2008/04/22/jquery-gem/</link>
		<comments>http://www.seangates.com/2008/04/22/jquery-gem/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 04:50:44 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Javscript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.seangates.com/2008/04/22/jquery-gem/</guid>
		<description><![CDATA[Here is a little jQuery gem I was able to figure out. $(".outerDiv").hover( function(){ $(this).find(".innerDiv").show(); }, function(){ $(this).find(".innerDiv").hide(); } ); What the above code does is show &#60;div class="innerDiv">&#60;/div> when &#60;div class="outerDiv">&#60;/div> is hovered, and return the innerDiv to a hidden state when the the hover is lost. I found this useful to show edit [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a little jQuery gem I was able to figure out.<br />
<code><br />
$(".outerDiv").hover(<br />
	function(){ $(this).find(".innerDiv").show(); },<br />
	function(){ $(this).find(".innerDiv").hide(); }<br />
);<br />
</code><br />
What the above code does is show <code>&lt;div class="innerDiv">&lt;/div></code> when <code>&lt;div class="outerDiv">&lt;/div></code> is hovered, and return the innerDiv to a hidden state when the the hover is lost.</p>
<p>I found this useful to show edit and delete links when a user hovered over a particular database item.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seangates.com/2008/04/22/jquery-gem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
