<?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; Javscript</title>
	<atom:link href="http://www.seangates.com/category/web-development/javscript/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>
		<item>
		<title>Regex Love</title>
		<link>http://www.seangates.com/2007/03/19/33/</link>
		<comments>http://www.seangates.com/2007/03/19/33/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 18:05:32 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Javscript]]></category>
		<category><![CDATA[PERL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.seangates.com/?p=33</guid>
		<description><![CDATA[I have been doing some regular expression work in JavaScript the past couple of days, and I realize regular expressions can be powerful and do a lot for me. The following examples are variations (not the actual because I could get in trouble here at work) of what I was able to do off the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been doing some regular expression work in JavaScript the past couple of days, and I realize regular expressions can be powerful and do a lot for me.  The following examples are variations (not the actual because I could get in trouble here at work) of what I was able to do off the top of my head:</p>
<blockquote><p>/^p\d{3}$/     // looks for a &#8220;p&#8221; followed by 3 digits<br />
/^\d{6}(-\d{6})?$/     // looks for 6 digits with an optional dash then 6 more digits</p></blockquote>
<p>Just thought I&#8217;d share in my own joy.  Can you see the joy in those regex?  Love it.</p>
<blockquote><p>Note: I fixed the second example per Mitch&#8217;s bug find.Ã‚Â  Apparently my transcription from my whiteboard was not perfect. :-)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.seangates.com/2007/03/19/33/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
