I have 2,299.00 as a string and I am trying to parse it to a number. I tried using parseFloat, which results in 2. I guess the comma is the problem
2,299.00
parseFloat
Replace the comma with an empty string:
var x = parseFloat("2,299.00".replace(",","")) alert(x);