<?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 Tech. &#187; jQuery</title>
	<atom:link href="http://www.ultramegatech.com/category/tutorials/jquery-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ultramegatech.com</link>
	<description>Web development blog</description>
	<lastBuildDate>Thu, 27 Oct 2011 22:50:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Create Snake in JavaScript with HTML5 Canvas</title>
		<link>http://www.ultramegatech.com/2011/08/create-snake-in-javascript/</link>
		<comments>http://www.ultramegatech.com/2011/08/create-snake-in-javascript/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 22:19:51 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=956</guid>
		<description><![CDATA[Yesterday I had some spare time, so I decided to write Snake in JavaScript using the HTML5 canvas. If anything, this is a good simple example demonstrating a use of the canvas. So, here's a tutorial walking through the creation of the game. If, for some reason, you are not familiar with the game Snake, [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/2011/08/create-snake-in-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create an Upload Progress Bar With PHP and jQuery</title>
		<link>http://www.ultramegatech.com/2010/10/create-an-upload-progress-bar-with-php-and-jquery/</link>
		<comments>http://www.ultramegatech.com/2010/10/create-an-upload-progress-bar-with-php-and-jquery/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 18:17:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[file uploads]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[progress bar]]></category>
		<category><![CDATA[progressbar]]></category>
		<category><![CDATA[uploadprogress]]></category>

		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=929</guid>
		<description><![CDATA[When it comes to uploading files, users expect visual feedback, usually in the form of a progress bar. The problem is that PHP doesn’t offer a way to track file uploads in progress by default. Fortunately, there is an extension that enables this functionality and this tutorial will show how it can be combined with [...]]]></description>
		<wfw:commentRss>http://www.ultramegatech.com/2010/10/create-an-upload-progress-bar-with-php-and-jquery/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Default Form Values with jQuery</title>
		<link>http://www.ultramegatech.com/2009/10/default-form-values-jquery/</link>
		<comments>http://www.ultramegatech.com/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[jQuery]]></category>
		<category><![CDATA[Tips & Tutorials]]></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/2009/10/default-form-values-jquery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Data Storage with jQuery</title>
		<link>http://www.ultramegatech.com/2009/08/data-storage-with-jquery/</link>
		<comments>http://www.ultramegatech.com/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[jQuery]]></category>
		<category><![CDATA[Tips & Tutorials]]></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/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/2009/08/add-records-to-a-queue-with-jquery/</link>
		<comments>http://www.ultramegatech.com/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[jQuery]]></category>
		<category><![CDATA[Tips & Tutorials]]></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/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/2009/06/create-a-slide-in-panel-jquery/</link>
		<comments>http://www.ultramegatech.com/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[jQuery]]></category>
		<category><![CDATA[Tips & Tutorials]]></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/2009/06/create-a-slide-in-panel-jquery/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
	</channel>
</rss>

