<?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>codeRambler &#187; Javascript</title>
	<atom:link href="http://www.coderambler.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderambler.com</link>
	<description>Ramblings on code, the web, and technology</description>
	<lastBuildDate>Sun, 06 Sep 2009 08:56:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tips on converting strings into numbers</title>
		<link>http://www.coderambler.com/tips-on-converting-strings-into-numbers/</link>
		<comments>http://www.coderambler.com/tips-on-converting-strings-into-numbers/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 09:29:47 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/tips-on-converting-strings-into-numbers/</guid>
		<description><![CDATA[When you are reading a value from a text input, the value is returned as a string. Read on about how to convert this string into a number, and some of the pitfalls awaiting the novice Javascript developer.]]></description>
		<wfw:commentRss>http://www.coderambler.com/tips-on-converting-strings-into-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memory leaks and closures in Javascript</title>
		<link>http://www.coderambler.com/memory-leaks-and-closures-in-javascript/</link>
		<comments>http://www.coderambler.com/memory-leaks-and-closures-in-javascript/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 10:57:37 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/memory-leaks-and-closures-in-javascript/</guid>
		<description><![CDATA[The topic of memory leaks reared it's ugly head again recently and I tracked down several good articles and tutorials that discuss and explain some of their causes (and hwo to prevent them) quite well.]]></description>
		<wfw:commentRss>http://www.coderambler.com/memory-leaks-and-closures-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When is a task considered to be Done?</title>
		<link>http://www.coderambler.com/when-is-something-considered-done/</link>
		<comments>http://www.coderambler.com/when-is-something-considered-done/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 08:57:26 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/when-is-something-considered-done/</guid>
		<description><![CDATA[When is something considered to be Done? Is it Done when you have finished writing the code? When you have done some testing? Read on for my take on when a story/task is considered to be Done.]]></description>
		<wfw:commentRss>http://www.coderambler.com/when-is-something-considered-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It doesn&#8217;t smell right!</title>
		<link>http://www.coderambler.com/it-doesnt-smell-right/</link>
		<comments>http://www.coderambler.com/it-doesnt-smell-right/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 13:38:21 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/it-doesnt-smell-right/</guid>
		<description><![CDATA[How often do you refactor your code so that it works better or is easier to understand? Recognising that a section of code "smells" and needs to be refactored is not a particularly straight-forward task. Here are some of the signs I use to spot "smelly" code.]]></description>
		<wfw:commentRss>http://www.coderambler.com/it-doesnt-smell-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to target specific IE browsers using just HTML?</title>
		<link>http://www.coderambler.com/how-to-target-ie-browsers-using-html/</link>
		<comments>http://www.coderambler.com/how-to-target-ie-browsers-using-html/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:08:24 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/how-to-target-ie-browsers-using-html/</guid>
		<description><![CDATA[Many people were introduced to <a href="http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp">conditional comments</a> with the introduction of IE7. You can use conditional comments to display different content on the page when using Internet Explorer for windows. This provides a non-javascript method to target specific windows IE browser versions.]]></description>
		<wfw:commentRss>http://www.coderambler.com/how-to-target-ie-browsers-using-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I use the &lt;script&gt; tag?</title>
		<link>http://www.coderambler.com/how-do-i-use-the-script-tag/</link>
		<comments>http://www.coderambler.com/how-do-i-use-the-script-tag/#comments</comments>
		<pubDate>Fri, 23 Dec 2005 14:20:12 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/?p=8</guid>
		<description><![CDATA[The <b>language</b> attribute remains the most abused attribute in common use today (even though has been deprecated in HTML 4.01 and XHTML 1.0 Strict. Take a look at what you should really be using in those &#60;script&#62; tags.]]></description>
		<wfw:commentRss>http://www.coderambler.com/how-do-i-use-the-script-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft finally retires IE 5 for the Mac</title>
		<link>http://www.coderambler.com/microsoft-finally-retires-ie-5-for-the-mac/</link>
		<comments>http://www.coderambler.com/microsoft-finally-retires-ie-5-for-the-mac/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 12:07:46 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.coderambler.com/?p=6</guid>
		<description><![CDATA[On December 14th, 2005 Microsoft quietly published an obituary for the Macintosh Internet Explorer 5 browser. They announced they are finally ending all support from December 31st 2005.]]></description>
		<wfw:commentRss>http://www.coderambler.com/microsoft-finally-retires-ie-5-for-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
