<?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: Input Field accepting only numbers using javascript</title>
	<atom:link href="http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/</link>
	<description>Freelance Project Developer &#124; Consultant - Cochin, Trivandrum, Calicut</description>
	<lastBuildDate>Wed, 21 Mar 2012 09:55:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: R Arun Raj</title>
		<link>http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/comment-page-1/#comment-134</link>
		<dc:creator>R Arun Raj</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://arunrajr.com/blog/?p=24#comment-134</guid>
		<description>Thanks Kushal .. 

Good job .. 

-Arun</description>
		<content:encoded><![CDATA[<p>Thanks Kushal .. </p>
<p>Good job .. </p>
<p>-Arun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kushal</title>
		<link>http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/comment-page-1/#comment-133</link>
		<dc:creator>Kushal</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://arunrajr.com/blog/?p=24#comment-133</guid>
		<description>Hi Arun,
In your code doesnot allows the back space key.So i rewrite the code as follows
function IsNumeric(event)
{
var unicode=event.keyCode? event.keyCode: event.charCode;
if ((unicode  33)&amp;&amp;(unicode  57) )  
{
if(unicode==8)
{
return true;
}
return false;
}
return true;
}

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Arun,<br />
In your code doesnot allows the back space key.So i rewrite the code as follows<br />
function IsNumeric(event)<br />
{<br />
var unicode=event.keyCode? event.keyCode: event.charCode;<br />
if ((unicode  33)&amp;&amp;(unicode  57) )<br />
{<br />
if(unicode==8)<br />
{<br />
return true;<br />
}<br />
return false;<br />
}<br />
return true;<br />
}</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kushal</title>
		<link>http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/comment-page-1/#comment-132</link>
		<dc:creator>Kushal</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://arunrajr.com/blog/?p=24#comment-132</guid>
		<description>Sorry!!! its working now
the problem was in my side
Sorry Once again</description>
		<content:encoded><![CDATA[<p>Sorry!!! its working now<br />
the problem was in my side<br />
Sorry Once again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kushal</title>
		<link>http://www.techaspirant.com/input-field-accepting-only-numbers-using-javascript/comment-page-1/#comment-131</link>
		<dc:creator>Kushal</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://arunrajr.com/blog/?p=24#comment-131</guid>
		<description>But this code is not working in FF</description>
		<content:encoded><![CDATA[<p>But this code is not working in FF</p>
]]></content:encoded>
	</item>
</channel>
</rss>

