<?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>Simon Whatley &#187; jquery</title>
	<atom:link href="http://www.simonwhatley.co.uk/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simonwhatley.co.uk</link>
	<description>The opposite of every great idea is another great idea</description>
	<lastBuildDate>Wed, 02 Nov 2011 09:28: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>3 Free eBooks on jQuery</title>
		<link>http://www.simonwhatley.co.uk/3-free-ebooks-on-jquery</link>
		<comments>http://www.simonwhatley.co.uk/3-free-ebooks-on-jquery#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:33:15 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=4489</guid>
		<description><![CDATA[jQuery, a JavaScript library, is definitely something worth knowing. Here are some resources to help you learn and master it.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.simonwhatley.co.uk/blog/wp-content/uploads/2011/07/jquery_logo-300x73.png" alt="" title="jQuery" width="300" height="73" class="aligncenter size-medium wp-image-4495" /></p>
<p>jQuery, a JavaScript library, is definitely something worth knowing. Here are some resources to help you learn and master it.</p>
<ul>
<li><a href="http://jqfundamentals.com/book/index.html" title="jQuery Fundamentals" target="_blank" rel="nofollow">jQuery Fundamentals</a> by <a href="http://www.rebeccamurphey.com/" title="Rebecca Murphey" target="_blank" rel="nofollow">Rebecca Murphey</a>, with contributions from <a href="http://james.padolsey.com/" title="James Padolsey" target="_blank" rel="nofollow">James Padolsey</a>, <a href="http://paulirish.com/" title="Paul Irish" target="_blank" rel="nofollow">Paul Irish</a> and others, is a free e-book available in <abbr title="HyperText Markup Language">HTML</abbr>. It includes an overview of JavaScript as its first chapter, to help developers get up to speed.</li>
<li><a href="http://addyosmani.com/blog/essentialjsdesignpatterns/" title="Essential JavaScript &#038; jQuery Design Patterns" target="_blank" rel="nofollow">Essential JavaScript &#038; jQuery Design Patterns</a> by <a href="http://addyosmani.com/blog/" title="Addy Osmani" target="_blank" rel="nofollow">Addy Osmani</a> is a free e-book of design patterns for those who already know jQuery but want to take their skills to the next level.</li>
<li><a href="http://docs.jquery.com/Main_Page" title="Official jQuery Documentation" target="_blank" rel="nofollow">Official jQuery Documentation</a></li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/3-free-ebooks-on-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Google-Hosted JavaScript Libraries with WordPress</title>
		<link>http://www.simonwhatley.co.uk/using-google-hosted-javascript-libraries-with-wordpress</link>
		<comments>http://www.simonwhatley.co.uk/using-google-hosted-javascript-libraries-with-wordpress#comments</comments>
		<pubDate>Tue, 13 Apr 2010 15:00:19 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=3474</guid>
		<description><![CDATA[With the announcement that Google will be including page loading times as part of it’s SERPs ranking algorithm, it has become increasingly important to optimise your use of 3rd-party libraries such as jQuery.]]></description>
			<content:encoded><![CDATA[<p>With the announcement that Google will be including page loading times as part of it&#8217;s <abbr title="Search Engine Results Pages">SERP</abbr>s ranking algorithm, it has become increasingly important to optimise your use of 3rd-party libraries such as <a href="http://jquery.com" title="jQuery JavaScript Library" target="_blank" rel="nofollow">jQuery</a>.</p>
<p>If you want &#8212; and this is the default setting for WordPress, themes and plugins &#8212; you can just download jQuery, put it on your server and link to it from your <code>header.php</code> file in the <code>&lt;head&gt;</code> section.</p>
<p>However, it is better to use the proper <code>wp_register_script()</code> function, which can be achieved in your <code>functions.php</code> file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span>is_admin<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   wp_deregister_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
   wp_register_script<span style="color: #009900;">&#40;</span>
   	<span style="color: #0000ff;">'jquery'</span><span style="color: #339933;">,</span>
   	<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
   	<span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span>
   	<span style="color: #0000ff;">'1.4.2'</span>
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
   wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>The reason we use the <code>wp_register_script()</code> is to ensure that WordPress and its themes and plugins are aware that the script has been loaded and therefore not to load an additional copy.</p>
<p>I have also used the <code>is_admin()</code> function to prevent conflict and therefore errors, in the WordPress administrator.</p>
<p>Of course, this method is not only restricted to jQuery, you can do the same for other popular JavaScript frameworks such as <a href="http://ajax.googleapis.com/ajax/libs/mootools/1.2.4/mootools-yui-compressed.js" title="Google-hosted Mootools">Mootools</a>.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Further information on the wp_enqueue_script can be found on the <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script" title="WordPress Codex - Function Reference/wp enqueue script" target="_blank" rel="nofollow">WordPress Codex</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/using-google-hosted-javascript-libraries-with-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using jQuery Auto-Complete with ColdFusion</title>
		<link>http://www.simonwhatley.co.uk/using-jquery-auto-complete-with-coldfusion</link>
		<comments>http://www.simonwhatley.co.uk/using-jquery-auto-complete-with-coldfusion#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:28:05 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[Bulgaria]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Dylan Verheul]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[New Brunswick]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=587</guid>
		<description><![CDATA[Creating an autocomplete form field historically has not been a trivial matter and would require an indepth knowledge of JavaScript and CSS. However, the task is made far more simple when using one of the many freely-available JavaScript libraries. In this post I will show you how to implement the jQuery Autocomplete created by Dylan Verheul.]]></description>
			<content:encoded><![CDATA[<p>Creating an autocomplete form field historically has not been a trivial matter and would require an indepth knowledge of JavaScript and CSS. However, the task is made far more simple when using one of the many freely-available JavaScript libraries. In this post I will show you how to implement the <a href="http://www.dyve.net/jquery/?autocomplete" title="jQuery Autocomplete Plugin" target="_blank" rel="nofollow">jQuery Autocomplete</a> created by Dylan Verheul.</p>
<h3>The Goal</h3>
<p>Allow the user to type a few characters into a standard form text input field and to automatically provide suggestions from which the user can select.</p>
<h3>Prerequisites</h3>
<ol>
<li>The <a href="http://code.jquery.com/jquery-latest.js" target="_blank">latest copy of jQuery</a></li>
<li>A basic understanding of JavaScript</li>
<li>A server-side script that can respond to the <acronym title="Asynchronous JavaScript and XML">AJAX</acronym> request, in our case ColdFusion</li>
</ol>
<h3>Demo</h3>
<p>The demo will specifically look at a simple form text input field, which takes a country name.</p>
<p><a href="http://www.simonwhatley.co.uk/examples/autocomplete/jquery/">See the demo, and others, in action</a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>How It Works</h3>
<p>Once the user begins to type into the form text input field, the jQuery autocomplete is activated. After a set time interval, a list of items is displayed below the input field. The user can select these with either the arrow keys or mouse.</p>
<h3>The Code</h3>
<p>There are three parts to this demo:</p>
<ol>
<li>The page&#8217;s HTML.</li>
<li>The server-side code to produce the dynamic page (i.e. to load the autocomplete <code>div</code> when the user types something into the input field).</li>
<li>The jQuery &#038; JavaScript.</li>
</ol>
<p><strong>HTML Form</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;h3&gt;Example 1.: Country Lookup&lt;/h3&gt;
&lt;p&gt;Using &lt;abbr title=&quot;Asynchronous JavaScript and XML&quot;&gt;AJAX&lt;/abbr&gt; to interrogate the database.&lt;/p&gt;
&lt;p&gt;Example data: Australia, Bulgaria, United Kingdom&lt;/p&gt;
&lt;form name=&quot;frmAutoCompleteCountry&quot; id=&quot;frmAutoCompleteCountry&quot; action=&quot;#&quot; method=&quot;post&quot;&gt;
&lt;p&gt;
&lt;label for=&quot;country&quot;&gt;Country&lt;/label&gt;
&lt;input type=&quot;text&quot; name=&quot;country&quot; id=&quot;country&quot; /&gt;
&lt;/p&gt;
&lt;/form&gt;
&lt;p&gt;NB. If you have &lt;a href=&quot;http://getfirebug.com/&quot; title=&quot;Get Firebug&quot;&gt;Firebug&lt;/a&gt; installed you will be able to view the &lt;abbr title=&quot;Asynchronous JavaScript and XML&quot;&gt;AJAX&lt;/abbr&gt; call.&lt;/p&gt;</pre></div></div>

<p><strong>ColdFusion</strong></p>
<p>This is a simple example, using a database to return a list of country names that match the characters the user has input. You could expand this and return a <acronym title="JavaScript Object Notation">JSON</acronym> data structure.</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #800000;">&lt;cfsetting</span> <span style="color: #0000ff">enablecfoutputonly</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;true&quot;</span><span style="color: #800000;">&gt;</span></span>
<span style="color: #333333;"><span style="color: #800000;">&lt;cfquery</span> <span style="color: #0000ff;">name</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;qryGetCountry&quot;</span> <span style="color: #0000ff">datasource</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;myDatasource&quot;</span><span style="color: #800000;">&gt;</span></span>
SELECT countryName
FROM Country
WHERE countryName LIKE <span style="color: #333333;"><span style="color: #800000;">&lt;cfqueryparam</span> <span style="color: #0000ff;">value</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;#URL.q#%&quot;</span> <span style="color: #0000ff">cfsqltype</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;cf_sql_varchar&quot;</span> <span style="color: #0000ff;">/</span><span style="color: #800000;">&gt;</span></span>
<span style="color: #333333;"><span style="color: #800000;">&lt;/cfquery&gt;</span></span>
<span style="color: #333333;"><span style="color: #800000;">&lt;cfoutput</span> <span style="color: #0000ff">query</span><span style="color: #0000ff;">=</span><span style="color: #009900;">&quot;qryGetCountry&quot;</span><span style="color: #800000;">&gt;</span></span>
<span style="color: #0000ff;">#qryGetCountry.countryName##</span>chr(10)<span style="color: #0000ff;">#</span>
<span style="color: #0000ff;"><span style="color: #800000;">&lt;/cfoutput&gt;</span></span></pre></div></div>

<p><strong>JavaScript</strong></p>
<p>The JavaScript will attach itself after the document is ready, i.e. after the page has loaded. Each time the text input field, with the ID of country, is changed, the autocomplete event is fired. This makes a call to the ColdFusion page, which returns a list of matched items.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;jquery-1.2.6.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.autocomplete.js&quot;&gt;&lt;/script&gt;
&lt;link type=&quot;text/css&quot; href=&quot;autocomplete.css&quot; rel=&quot;stylesheet&quot; media=&quot;screen&quot; /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
	$(&quot;#country&quot;).autocomplete(
		&quot;country.cfm&quot;,
		{
			minChars:2,
			delay:200,
			autoFill:false,
			matchSubset:false,
			matchContains:1,
			cacheLength:10,
			selectOnly:1
		}
	);
);
&lt;/script&gt;</pre></div></div>

<h3>Where To Take It Next</h3>
<p><strong>JSON</strong></p>
<p>The above example only shows a simple text list, separated by carriage returns. It is more preferable to use <acronym title="JavaScript Object Notation">JSON</acronym>.</p>
<p><strong>Unobtrusive JavaScript</strong></p>
<p>As with any page that is loaded with JavaScript and AJAX functionality, it should work without JavaScript.</p>
<p>To achieve this with the above tutorial, you will need to replace the jQuery autocomplete functionality with an &#8216;interim&#8217; page that allows a user to select from a list of items, effectively turning the input field into a simple search interface. Of course, all other form field information would need to be retained between pages.</p>
<h3>Download The Code</h3>
<p>The <a href="http://www.simonwhatley.co.uk/examples/autocomplete/jquery/">example code</a> can be downloaded from the demo page. Included are ColdFusion and PHP examples.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/using-jquery-auto-complete-with-coldfusion/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>JavaScript Frameworks &#8211; Let There Be Light</title>
		<link>http://www.simonwhatley.co.uk/javascript-frameworks-let-there-be-light</link>
		<comments>http://www.simonwhatley.co.uk/javascript-frameworks-let-there-be-light#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:27:58 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe ColdFusion]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[client-side]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[Server Side]]></category>
		<category><![CDATA[server-side technology]]></category>
		<category><![CDATA[Spry]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web developers]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[Yahoo user interface]]></category>
		<category><![CDATA[Yahoo! User Interface Library]]></category>
		<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=599</guid>
		<description><![CDATA[For many web developers, whenever JavaScript is mentioned it provokes a rye smile; JavaScript is one of those programming languages that is rather avoided than embraced. This is not the fault of the language itself, but rather the browsers.]]></description>
			<content:encoded><![CDATA[<p>For many web developers, whenever JavaScript is mentioned it provokes a rye smile; JavaScript is one of those programming languages that is rather avoided than embraced. This is not the fault of the language itself, but rather the browsers. A few years ago, the landscape of client-side scripting was a bleak scene. Browser inconsistencies, particularly with the dominant Internet Explorer, implementation bugs and numerous target platforms made developing client-side JavaScript a tricky undertaking.</p>
<p>To the consternation of these same developers, the landscape changed and Web 2.0 hit the mainstream. Almost overnight, every website on the internet wanted to use or was using AJAX. Marketers joined the bandwaggon and every feature requested had to involve something dynamic and revolutionary. Thus JavaScript development quickly hit the forefront of peoples minds and became as important as any server-side technology available at the time.</p>
<p>Over the next few blog posts, I will be using the popular frameworks <a href="http://jquery.com" title="jQuery" target="_blank" rel="nofollow">jQuery</a>, <a href="http://developer.yahoo.com/yui/" title="Yahoo! User Interface Library" target="_blank" rel="nofollow">Yahoo! User Interface Library</a> (<abbr title="Yahoo User Interface">YUI</abbr>), <a href="http://extjs.com" title="ExtJS" target="_blank" rel="nofollow">ExtJS</a> and Adobe&#8217;s <a href="http://labs.adobe.com/technologies/spry/" title="Spry" target="_blank" rel="nofollow">Spry</a> with ColdFusion to demonstrate various techniques, such as autocomplete and form validation.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/javascript-frameworks-let-there-be-light/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.2 API Reference</title>
		<link>http://www.simonwhatley.co.uk/jquery-12-api-reference</link>
		<comments>http://www.simonwhatley.co.uk/jquery-12-api-reference#comments</comments>
		<pubDate>Wed, 09 Apr 2008 10:55:25 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[lightweight applications]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=419</guid>
		<description><![CDATA[Among the plethora of JavaScript libraries to have been released, few have been recognised to be as effective as jQuery. This lightweight library has been the subject of different discussions since it was launched in 2006. Basically, jQuery has the ability to flawlessly string together JavaScript together with HTML. Because of its effectiveness, there have different types of lightweight applications and plug-ins launched using jQuery. Ajax based websites that offers simple interface would virtually work together using jQuery's simple interface.]]></description>
			<content:encoded><![CDATA[<p>Among the plethora of JavaScript libraries to have been released, few have been recognised to be as effective as <a href="http://jquery.com/" title="jQuery" target="_blank" rel="nofollow">jQuery</a>. This lightweight library has been the subject of different discussions since it was launched in 2006. Basically, jQuery has the ability to flawlessly string together JavaScript together with <acronym title="HyperText Markup Language">HTML</acronym>. Because of its effectiveness, there have different types of lightweight applications and plug-ins launched using jQuery. Ajax based websites that offers simple interface would virtually work together using jQuery&#8217;s simple interface.</p>
<p>Download the <a href='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/02/jquery12_api_reference.png' title='jQuery 1.2 API Reference'>jQuery 1.2 API Reference</a> (360KB).</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>More information can be found on the <a href="http://jquery.com/" title="jQuery" target="_blank" rel="nofollow">jQuery Website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/jquery-12-api-reference/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

