<?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>UltraMega Blog &#187; jQuery</title>
	<atom:link href="http://www.ultramegatech.com/blog/category/tutorials/jquery-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ultramegatech.com/blog</link>
	<description>Web development blog from UltraMega Tech.</description>
	<lastBuildDate>Tue, 27 Jul 2010 20:44:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Default Form Values with jQuery</title>
		<link>http://www.ultramegatech.com/blog/2009/10/default-form-values-jquery/</link>
		<comments>http://www.ultramegatech.com/blog/2009/10/default-form-values-jquery/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 21:41:50 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[defaultvalue]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[text input]]></category>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=692</guid>
		<description><![CDATA[Here's a useful jQuery snippet that clears the default values of form fields on focus and refills them if no text is entered. It uses the attribute called defaultValue which stores the original value of a form field. $&#40;document&#41;.ready&#40;function&#40;&#41; &#123; $&#40;'input[type=text]'&#41;.focus&#40;function&#40;&#41; &#123; if&#40;$&#40;this&#41;.val&#40;&#41; == $&#40;this&#41;.attr&#40;'defaultValue'&#41;&#41; &#123; $&#40;this&#41;.val&#40;''&#41;; &#125; &#125;&#41; .blur&#40;function&#40;&#41; &#123; if&#40;$&#40;this&#41;.val&#40;&#41;.length == 0&#41; &#123; [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/blog/2009/10/default-form-values-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Data Storage with jQuery</title>
		<link>http://www.ultramegatech.com/blog/2009/08/data-storage-with-jquery/</link>
		<comments>http://www.ultramegatech.com/blog/2009/08/data-storage-with-jquery/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 22:52:15 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[DOM]]></category>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=618</guid>
		<description><![CDATA[The jQuery data functions provide a clean way to store information for any kind of use. You can assign any amount of data to an element on the page and access it later by referencing the element. Like everything in jQuery, this is very easy to use. In the following examples, we will be using [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/blog/2009/08/data-storage-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add Records to a Queue with jQuery</title>
		<link>http://www.ultramegatech.com/blog/2009/08/add-records-to-a-queue-with-jquery/</link>
		<comments>http://www.ultramegatech.com/blog/2009/08/add-records-to-a-queue-with-jquery/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 18:55:46 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=585</guid>
		<description><![CDATA[This tutorial will explain how to make an animated "add to queue" type functionality with jQuery. Since it is hard to explain the results, check out the demo. First, I'll show how to create the actual effect, and then how to implement AJAX submission to a back-end script for database storage or some other processing. [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/blog/2009/08/add-records-to-a-queue-with-jquery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create a Slide-In Panel with jQuery</title>
		<link>http://www.ultramegatech.com/blog/2009/06/create-a-slide-in-panel-jquery/</link>
		<comments>http://www.ultramegatech.com/blog/2009/06/create-a-slide-in-panel-jquery/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 21:31:25 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XHTML]]></category>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=468</guid>
		<description><![CDATA[In this tutorial, I'll explain how to create a slide-in panel effect with jQuery. Basically, this means a hidden panel the slides into view when it is triggered by a button or other action. This is often used to display a contact form in a fun way, which is exactly what I am using it [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/blog/2009/06/create-a-slide-in-panel-jquery/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
