I am in need of some code that removes commas from a string.
I currently have a variety of numbers in the number_format() for PHP.
I use Jquery to post certain things to a update page and I need the commas removed from a class.
for instance here is some code.
<span class="money">1,234,567</span>
I want the value of the code I post to be 1234567 instead of 1,234,567.
I would like to use Jquery if that’s possible.
Thanks
replace