<?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>Learning is Interactive &#187; Javascript</title>
	<atom:link href="http://bateru.com/news/reviews/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://bateru.com/news</link>
	<description>Writing software and articles to help improve understanding. - Larry Battle</description>
	<lastBuildDate>Wed, 02 Jun 2010 02:37:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Chickenfoot mixed with jQuery.</title>
		<link>http://bateru.com/news/2010/06/chickenfoot-mixxed-with-jquery/</link>
		<comments>http://bateru.com/news/2010/06/chickenfoot-mixxed-with-jquery/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:48:06 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=204</guid>
		<description><![CDATA[Chickenfoot is a Firefox extension design for website automation. Chickenfoot is a Firefox extension that puts a programming environment in the browser&#8217;s sidebar so you can write scripts to manipulate web pages and automate web browsing. In Chickenfoot, scripts are written in a superset of Javascript that includes special functions specific to web tasks. Basically, [...]]]></description>
		<wfw:commentRss>http://bateru.com/news/2010/06/chickenfoot-mixxed-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jLed &#8211; jquery led banner plugin</title>
		<link>http://bateru.com/news/2010/03/jled/</link>
		<comments>http://bateru.com/news/2010/03/jled/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 20:14:49 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery projects]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=197</guid>
		<description><![CDATA[Working on jLed. Converting it to a jquery plugin soon. Inspired from http://www.ajaxray.com/blog/2010/02/28/jquery-led-scrolling-banner-fun-plugin/. Here&#8217;s a demo. jLed demo]]></description>
		<wfw:commentRss>http://bateru.com/news/2010/03/jled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Those Kana v0.8</title>
		<link>http://bateru.com/news/2010/01/learn-those-kana-v0-8/</link>
		<comments>http://bateru.com/news/2010/01/learn-those-kana-v0-8/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 09:23:55 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=168</guid>
		<description><![CDATA[Hey Everyone, I&#8217;ve been working hard to push out a great example of the potential jquizme has to offer to learning. &#8220;Learn Those Kana&#8221;, demonstrate the true power of scripting, by providing plenty of exercise for mastering character recognition by sight and sound. Anyhow check it out at at the link below. Learn Those Kana [...]]]></description>
		<wfw:commentRss>http://bateru.com/news/2010/01/learn-those-kana-v0-8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuizMe 2.1 Release Page</title>
		<link>http://bateru.com/news/2009/12/jquizme-2-1-release-page/</link>
		<comments>http://bateru.com/news/2009/12/jquizme-2-1-release-page/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 05:01:02 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=164</guid>
		<description><![CDATA[This holiday break gave me the time that I need to push out a next release of jQuizMe. Check it out at Google Code, jQuizMe. Please leave your feedback in the comment box.]]></description>
		<wfw:commentRss>http://bateru.com/news/2009/12/jquizme-2-1-release-page/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Javascript Tip: Convert string to unicode values</title>
		<link>http://bateru.com/news/2009/10/javascript-tips-convert-string-to-unicode-values/</link>
		<comments>http://bateru.com/news/2009/10/javascript-tips-convert-string-to-unicode-values/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 21:45:16 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=127</guid>
		<description><![CDATA[The following script will convert a string to the unicode values using javascript. toUnicode is a extension to String.charCodeAt. The benefit of this function is that it returns the whole string a html unicode format. String.prototype.toUnicode = function() { var uni = [], i = this.length; while (i--) { uni[i] = this.charCodeAt(i); } return "&#38;&#35;" [...]]]></description>
		<wfw:commentRss>http://bateru.com/news/2009/10/javascript-tips-convert-string-to-unicode-values/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
