<?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 for Braxton in Austin</title>
	<atom:link href="http://braxtoninaustin.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://braxtoninaustin.com</link>
	<description>A Tech-Savvy Realtor</description>
	<lastBuildDate>Thu, 28 Jul 2011 20:09:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Sam</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-69</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 28 Jul 2011 20:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-69</guid>
		<description>wow Braxton, I think I&#039;m more confused, I understand the logic behind your suggestion, but I&#039;m completely stumped on implementation, if you have a look at this link, you&#039;ll see what I&#039;m working on, http://ow.ly/5PRaf I&#039;ve removed the onblur on the first amount field, but you&#039;ll see on the second amount field, I need that onblur occuring there to only happen onsubmit on both fields. I was hoping it&#039;s achievable by a few additions to the javascript I posted earlier, i.e that it only happens onsubmit on those 2 fields, then the client always sees what they typed as the first is field currently doing, but once they submit it does once currently happening onblur. no simpler way than the jquery route you&#039;ve advised?</description>
		<content:encoded><![CDATA[<p>wow Braxton, I think I&#8217;m more confused, I understand the logic behind your suggestion, but I&#8217;m completely stumped on implementation, if you have a look at this link, you&#8217;ll see what I&#8217;m working on, <a href="http://ow.ly/5PRaf">http://ow.ly/5PRaf</a> I&#8217;ve removed the onblur on the first amount field, but you&#8217;ll see on the second amount field, I need that onblur occuring there to only happen onsubmit on both fields. I was hoping it&#8217;s achievable by a few additions to the javascript I posted earlier, i.e that it only happens onsubmit on those 2 fields, then the client always sees what they typed as the first is field currently doing, but once they submit it does once currently happening onblur. no simpler way than the jquery route you&#8217;ve advised?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Braxton</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-68</link>
		<dc:creator>Braxton</dc:creator>
		<pubDate>Thu, 28 Jul 2011 19:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-68</guid>
		<description>First, you will need to include jQuery.  I would use Google&#039;s CDN for this.
http://code.google.com/apis/loader/

Then yes, you can just place the code in your script tag below the jQuery loading statements.  Wrap the code in the jQuery ready function though.
http://docs.jquery.com/How_jQuery_Works#Launching_Code_on_Document_Ready

I would recommend reading up on jQuery if plan to much js at all.  It will make your life easier.</description>
		<content:encoded><![CDATA[<p>First, you will need to include jQuery.  I would use Google&#8217;s CDN for this.<br />
<a href="http://code.google.com/apis/loader/">http://code.google.com/apis/loader/</a></p>
<p>Then yes, you can just place the code in your script tag below the jQuery loading statements.  Wrap the code in the jQuery ready function though.<br />
<a href="http://docs.jquery.com/How_jQuery_Works#Launching_Code_on_Document_Ready">http://docs.jquery.com/How_jQuery_Works#Launching_Code_on_Document_Ready</a></p>
<p>I would recommend reading up on jQuery if plan to much js at all.  It will make your life easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Sam</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-67</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 28 Jul 2011 18:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-67</guid>
		<description>thank you for your response Braxton, I&#039;m a little jquery and java challenged, I have achieved the little I have through some erratic googling. I&#039;m not sure how I would implement your advice, would I copy this into the java script tags, naming the form &amp; fields correctly of course, or am I totally off track? this is what I currently have running onblur, with the commas etc removed, as the submitted number cannot have commas and dots.... I have another function that formats into currency on keypress, and then blurs out as shown below. Now I need the 2 fields as explained to only do this onsubmit as users might be freaked out when they type in the amount with commas, and they dissapear ob blur. Even though I&#039;ve temporarily put a notice that the value will be foramatted to cents. 

function formatCurrency(num) {
num = num.toString().replace(/\$&#124;\,/g,&#039;&#039;);
if(isNaN(num))
num = &quot;0&quot;;
sign = (num == (num = Math.abs(num)));
num = Math.floor(num*100+0.50000000001);
cents = num%100;
num = Math.floor(num/100).toString();
if(cents&lt;10)
cents = &quot;0&quot; + cents;
for (var i = 0; i &lt; Math.floor((num.length-(1+i))/3); i++)
num = num.substring(0,num.length-(4*i+3))+&#039;&#039;+
num.substring(num.length-(4*i+3));
return (((sign)?&#039;&#039;:&#039;&#039;) + &#039;&#039; + num + &#039;&#039; + cents);
}</description>
		<content:encoded><![CDATA[<p>thank you for your response Braxton, I&#8217;m a little jquery and java challenged, I have achieved the little I have through some erratic googling. I&#8217;m not sure how I would implement your advice, would I copy this into the java script tags, naming the form &amp; fields correctly of course, or am I totally off track? this is what I currently have running onblur, with the commas etc removed, as the submitted number cannot have commas and dots&#8230;. I have another function that formats into currency on keypress, and then blurs out as shown below. Now I need the 2 fields as explained to only do this onsubmit as users might be freaked out when they type in the amount with commas, and they dissapear ob blur. Even though I&#8217;ve temporarily put a notice that the value will be foramatted to cents. </p>
<p>function formatCurrency(num) {<br />
num = num.toString().replace(/\$|\,/g,&#8221;);<br />
if(isNaN(num))<br />
num = &#8220;0&#8243;;<br />
sign = (num == (num = Math.abs(num)));<br />
num = Math.floor(num*100+0.50000000001);<br />
cents = num%100;<br />
num = Math.floor(num/100).toString();<br />
if(cents&lt;10)<br />
cents = &quot;0&quot; + cents;<br />
for (var i = 0; i &lt; Math.floor((num.length-(1+i))/3); i++)<br />
num = num.substring(0,num.length-(4*i+3))+&#039;&#039;+<br />
num.substring(num.length-(4*i+3));<br />
return (((sign)?&#039;&#039;:&#039;&#039;) + &#039;&#039; + num + &#039;&#039; + cents);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Braxton</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-66</link>
		<dc:creator>Braxton</dc:creator>
		<pubDate>Thu, 28 Jul 2011 16:31:28 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-66</guid>
		<description>Sam, using jQuery, it would be something like this (not tested):

https://gist.github.com/1111880

Or you could give all those fields a certain class and loop through them using each() if needed.</description>
		<content:encoded><![CDATA[<p>Sam, using jQuery, it would be something like this (not tested):</p>
<p><a href="https://gist.github.com/1111880">https://gist.github.com/1111880</a></p>
<p>Or you could give all those fields a certain class and loop through them using each() if needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Sam</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-65</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 28 Jul 2011 15:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-65</guid>
		<description>How do I run this function onsubmit on a form with other fields containing numbers, I would like this to happen on 2 fields onl out of about 10 fields with some containing numbers, I have it working with onblur for the fields, but ideally I need it on submit, please help...</description>
		<content:encoded><![CDATA[<p>How do I run this function onsubmit on a form with other fields containing numbers, I would like this to happen on 2 fields onl out of about 10 fields with some containing numbers, I have it working with onblur for the fields, but ideally I need it on submit, please help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trulia Blatantly Ignores Googles TOS &#8211; Cloaks Sites by Alicia Cook</title>
		<link>http://braxtoninaustin.com/2008/06/trulia-blatantly-ignores-googles-tos-cloaks-sites/comment-page-1/#comment-64</link>
		<dc:creator>Alicia Cook</dc:creator>
		<pubDate>Wed, 27 Jul 2011 00:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=12#comment-64</guid>
		<description>an address to this story was provided by Christian Dillstrom,  the mobile &amp; social media marketing god, so you must be doing an amazing job.</description>
		<content:encoded><![CDATA[<p>an address to this story was provided by Christian Dillstrom,  the mobile &amp; social media marketing god, so you must be doing an amazing job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Default WordPress Plugins by Raymond</title>
		<link>http://braxtoninaustin.com/2008/12/my-default-wordpress-plugins/comment-page-1/#comment-63</link>
		<dc:creator>Raymond</dc:creator>
		<pubDate>Thu, 09 Jun 2011 01:36:48 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=21#comment-63</guid>
		<description>I created a tool at http://www.wpkgr.com that makes this easy. Just create a custom install.php and drop in wp-content before installation. It downloads and enables the plugins for you.</description>
		<content:encoded><![CDATA[<p>I created a tool at <a href="http://www.wpkgr.com">http://www.wpkgr.com</a> that makes this easy. Just create a custom install.php and drop in wp-content before installation. It downloads and enables the plugins for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Braxton</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-62</link>
		<dc:creator>Braxton</dc:creator>
		<pubDate>Sat, 21 May 2011 13:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-62</guid>
		<description>Gist has been updated to be mostly jsLint approved.  Feel free to edit it further.</description>
		<content:encoded><![CDATA[<p>Gist has been updated to be mostly jsLint approved.  Feel free to edit it further.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a number to currency with Javascript by Matt</title>
		<link>http://braxtoninaustin.com/2011/02/converting-a-number-to-currency-with-javascript/comment-page-1/#comment-61</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 20 May 2011 18:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=55#comment-61</guid>
		<description>Try running this puppy through jsLint. Good Luck</description>
		<content:encoded><![CDATA[<p>Try running this puppy through jsLint. Good Luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Voice and Skype by Peter Sisson</title>
		<link>http://braxtoninaustin.com/2010/05/google-voice-and-skype/comment-page-1/#comment-40</link>
		<dc:creator>Peter Sisson</dc:creator>
		<pubDate>Fri, 07 May 2010 16:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://braxtoninaustin.com/?p=43#comment-40</guid>
		<description>Line2 is like a combination of Skype and Google Voice that is fully integrated so you don&#039;t have problems like this.  You do have to pay for it ($14.95/month) but it comes with live customer support and some additional business features you may find useful.  Just wanted to let you know about it - you can try it 30 days free at www.line2.com, or if you&#039;re not an iPhone user, go to www.toktumi.com</description>
		<content:encoded><![CDATA[<p>Line2 is like a combination of Skype and Google Voice that is fully integrated so you don&#8217;t have problems like this.  You do have to pay for it ($14.95/month) but it comes with live customer support and some additional business features you may find useful.  Just wanted to let you know about it &#8211; you can try it 30 days free at <a href="http://www.line2.com">http://www.line2.com</a>, or if you&#8217;re not an iPhone user, go to <a href="http://www.toktumi.com">http://www.toktumi.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.750 seconds -->

