<?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>Notepad Web Development &#187; Javascript</title>
	<atom:link href="http://notepadwebdevelopment.com/archives/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://notepadwebdevelopment.com</link>
	<description>Project portfolio</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:30:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Auto clearing text inputs</title>
		<link>http://notepadwebdevelopment.com/archives/673</link>
		<comments>http://notepadwebdevelopment.com/archives/673#comments</comments>
		<pubDate>Thu, 08 Dec 2011 12:29:50 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=673</guid>
		<description><![CDATA[
$('input[type=&#34;text&#34;]').each(function (i, el) {
if ($(this).val() == &#34;&#34;) return false;
$(this)
.data('defaultText', $(this).val())
.focus(function (e) { if ($(this).val() == $(this).data('defaultText')) $(this).val(''); })
.blur(function (e) { if ($(el).val() == '') $(el).val($(this).data('defaultText')); });
});

]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/673/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery plugin class based template</title>
		<link>http://notepadwebdevelopment.com/archives/618</link>
		<comments>http://notepadwebdevelopment.com/archives/618#comments</comments>
		<pubDate>Sat, 11 Dec 2010 23:36:17 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=618</guid>
		<description><![CDATA[
(function($){
	/*
	 *		Jquery Plugin Template
	 */

	$.fn.pluginTemplate = function(options) {

		return this.each(function() {
			var el = $(this);
			if (el.data('pluginTemplate')) return; 		// Return early if already exists on this element
			var pT = new pluginTemplate(this, options);	// Create object from our class
			el.data('pluginTemplate', pT);			// store the object as data() attached to target jquery object

			pT.init();
		});
	};

	var pluginTemplate = function(el, options) {

		var obj 	 = this;		// Ref [...]]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/618/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rizla Suzuki Moto GP widget</title>
		<link>http://notepadwebdevelopment.com/archives/399</link>
		<comments>http://notepadwebdevelopment.com/archives/399#comments</comments>
		<pubDate>Sun, 02 May 2010 15:52:56 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Google API]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=399</guid>
		<description><![CDATA[
Moto GP widget created for Rizla UK.

The user can navigate through the satelite map view to see locations and dates for all 11 Moto GP calendar events. The &#8220;From the track&#8221; div at the bottom loops through the latest headlines fed from the Rizla Suzuki Moto GP website.
]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/399/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

