<?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: Using jQuery to add thousands separator to textbox</title>
	<atom:link href="http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/</link>
	<description>Chatter about EPiServer, ASP.NET, CSS and Web Development.</description>
	<lastBuildDate>Wed, 21 Dec 2011 01:21:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Fredrik Haglund</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-4217</link>
		<dc:creator>Fredrik Haglund</dc:creator>
		<pubDate>Fri, 02 Sep 2011 13:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-4217</guid>
		<description>Try change this line and replace the space with a comma:
 str = str.replace(regex, &#039;$1 $2&#039;);</description>
		<content:encoded><![CDATA[<p>Try change this line and replace the space with a comma:<br />
 str = str.replace(regex, &#8216;$1 $2&#8242;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C.D.Tiwari</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-4216</link>
		<dc:creator>C.D.Tiwari</dc:creator>
		<pubDate>Fri, 02 Sep 2011 12:13:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-4216</guid>
		<description>Hello dear, I used this technique but if i need to insert comma inplace  of white space separator than how can i do ???</description>
		<content:encoded><![CDATA[<p>Hello dear, I used this technique but if i need to insert comma inplace  of white space separator than how can i do ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael Söderström</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-3492</link>
		<dc:creator>Mikael Söderström</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-3492</guid>
		<description>I wrote an article about that for a while ago:
http://weblogs.asp.net/mikaelsoderstrom/archive/2008/11/06/bygg-ut-jquery.aspx

Good luck!</description>
		<content:encoded><![CDATA[<p>I wrote an article about that for a while ago:<br />
<a href="http://weblogs.asp.net/mikaelsoderstrom/archive/2008/11/06/bygg-ut-jquery.aspx" rel="nofollow">http://weblogs.asp.net/mikaelsoderstrom/archive/2008/11/06/bygg-ut-jquery.aspx</a></p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Haglund</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-3480</link>
		<dc:creator>Fredrik Haglund</dc:creator>
		<pubDate>Thu, 11 Mar 2010 07:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-3480</guid>
		<description>Yes, that could be a good idea. And you could have options for currency and similar things. I put it on my to do list for research since I have never written a jQuery plugin before!</description>
		<content:encoded><![CDATA[<p>Yes, that could be a good idea. And you could have options for currency and similar things. I put it on my to do list for research since I have never written a jQuery plugin before!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael Söderström</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-3479</link>
		<dc:creator>Mikael Söderström</dc:creator>
		<pubDate>Thu, 11 Mar 2010 05:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-3479</guid>
		<description>Looks great. But why not create a jQuery plugin instead? :)

$(&#039;#myTextbox&#039;).TheNameOfThePlugin();</description>
		<content:encoded><![CDATA[<p>Looks great. But why not create a jQuery plugin instead? <img src='http://blog.fredrikhaglund.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>$(&#8216;#myTextbox&#8217;).TheNameOfThePlugin();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Haglund</title>
		<link>http://blog.fredrikhaglund.se/blog/2010/03/05/using-jquery-to-add-thousands-separator-to-textbox/comment-page-1/#comment-3478</link>
		<dc:creator>Fredrik Haglund</dc:creator>
		<pubDate>Wed, 10 Mar 2010 22:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fredrikhaglund.se/?p=223#comment-3478</guid>
		<description>Henrik Tengelin gave me some valuable feedback so I have updated the script above.

It does not pollute the global namespace with its two conversion functions. Instead they are declared locally instead.

I do reuse the lookup of input elements to increase performance and also use this.value direct instead of the jQuery wrapper that does the same.

Also sprinkled some semicolons to make jslint happy and this also improves performance a little.</description>
		<content:encoded><![CDATA[<p>Henrik Tengelin gave me some valuable feedback so I have updated the script above.</p>
<p>It does not pollute the global namespace with its two conversion functions. Instead they are declared locally instead.</p>
<p>I do reuse the lookup of input elements to increase performance and also use this.value direct instead of the jQuery wrapper that does the same.</p>
<p>Also sprinkled some semicolons to make jslint happy and this also improves performance a little.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

