<?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>ClickOnChris &#187; Javascript</title>
	<atom:link href="http://www.clickonchris.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clickonchris.com</link>
	<description>Christopher G Johnson: programmer, businessman, gamer</description>
	<lastBuildDate>Fri, 28 May 2010 14:14:57 +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>A Better Window.onLoad with jQuery</title>
		<link>http://www.clickonchris.com/2008/12/a-better-windowonload-with-jquery/</link>
		<comments>http://www.clickonchris.com/2008/12/a-better-windowonload-with-jquery/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 03:02:46 +0000</pubDate>
		<dc:creator>clickonchris</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://beta.clickonchris.com/?p=24</guid>
		<description><![CDATA[I have recently come to discover the javascript library jQuery. My favorite feature is the window.onLoad replacement, which is actually faster than window.onLoad and can be used multiple times in one document.
  $(document).ready(function(){
    // Your code here...
  });
Any code in the Your code here.. block will execute as soon as [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently come to discover the javascript library jQuery. My favorite feature is the window.onLoad replacement, which is actually faster than window.onLoad and can be used multiple times in one document.</p>
<pre><span style="color: #008000;">  $(document).ready(function(){
    // Your code here...
  });</span></pre>
<p>Any code in the Your code here.. block will execute as soon as the page is loaded. This is useful for referencing <span class="caps">DOM</span> elements which would have been “undefined” before the page was fully loaded by the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.clickonchris.com/2008/12/a-better-windowonload-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
