<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Controlling Input with Mootools Javascript</title>
	<atom:link href="http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/feed/" rel="self" type="application/rss+xml" />
	<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/</link>
	<description>Development n More</description>
	<lastBuildDate>Sun, 22 Aug 2010 18:03:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Adolfo</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-337</link>
		<dc:creator>Adolfo</dc:creator>
		<pubDate>Tue, 17 Aug 2010 12:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-337</guid>
		<description>in your original var numbers number 9 missing, this my new var numbers allowing also tab,delete, left and right arrow
var numbers = [8,9,13,37,39,46,48,49,50,51,52,53,54,55,56,57,96,97,98,99,100,101,102,103,104,105];</description>
		<content:encoded><![CDATA[<p>in your original var numbers number 9 missing, this my new var numbers allowing also tab,delete, left and right arrow<br />
var numbers = [8,9,13,37,39,46,48,49,50,51,52,53,54,55,56,57,96,97,98,99,100,101,102,103,104,105];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chad</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-302</link>
		<dc:creator>chad</dc:creator>
		<pubDate>Fri, 02 Jul 2010 14:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-302</guid>
		<description>nice, i also added 9 for tab. Your example didnt work for me, but your code works. Since the arrow keys return false delete doenst matter much anyways in my opinion.

thanks,</description>
		<content:encoded><![CDATA[<p>nice, i also added 9 for tab. Your example didnt work for me, but your code works. Since the arrow keys return false delete doenst matter much anyways in my opinion.</p>
<p>thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheldon</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-97</link>
		<dc:creator>Sheldon</dc:creator>
		<pubDate>Thu, 30 Apr 2009 21:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-97</guid>
		<description>Thanks Thomas,   I have extended the Example to Log all key strokes.  Are you able to tell me which key codes are logged when you be pressing those keys ?</description>
		<content:encoded><![CDATA[<p>Thanks Thomas,   I have extended the Example to Log all key strokes.  Are you able to tell me which key codes are logged when you be pressing those keys ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas J. Brown</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-96</link>
		<dc:creator>Thomas J. Brown</dc:creator>
		<pubDate>Tue, 28 Apr 2009 20:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-96</guid>
		<description>Pretty cool!

I do want to point out that, in the demo, the numbers-and-delete-only doesn&#039;t let me delete (with either the delete or backspace keys). It also doesn&#039;t let me tab, which might be a useful keystroke to allow.

Otherwise, very cool!</description>
		<content:encoded><![CDATA[<p>Pretty cool!</p>
<p>I do want to point out that, in the demo, the numbers-and-delete-only doesn&#8217;t let me delete (with either the delete or backspace keys). It also doesn&#8217;t let me tab, which might be a useful keystroke to allow.</p>
<p>Otherwise, very cool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheldon</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-95</link>
		<dc:creator>Sheldon</dc:creator>
		<pubDate>Sun, 26 Apr 2009 21:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-95</guid>
		<description>I have created an example at &lt;a href=&quot;http://sheldon.lendrum.co.nz/examples/control-input-javascript.php&quot; rel=&quot;nofollow&quot;&gt;http://sheldon.lendrum.co.nz/examples/control-input-javascript.php&lt;/a&gt;.  Check it out.</description>
		<content:encoded><![CDATA[<p>I have created an example at <a href="http://sheldon.lendrum.co.nz/examples/control-input-javascript.php" rel="nofollow">http://sheldon.lendrum.co.nz/examples/control-input-javascript.php</a>.  Check it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas J. Brown</title>
		<link>http://sheldon.lendrum.co.nz/controlling-input-mootools-javascript_392/22/comment-page-1/#comment-94</link>
		<dc:creator>Thomas J. Brown</dc:creator>
		<pubDate>Wed, 22 Apr 2009 15:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://sheldon.lendrum.co.nz/?p=392#comment-94</guid>
		<description>Interesting method. Do you have a working demo we can play with?</description>
		<content:encoded><![CDATA[<p>Interesting method. Do you have a working demo we can play with?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
