What can I use to convert this string into a number? "$148,326.00"
I am guessing that I need to explode it and take the dollar sign off, and then use parseFloat()? Would that be the wisest way?
This is how I am getting the number:
var homestead = xmlDoc.getElementsByTagName("sc2cash");
document.getElementById('num1').innerHTML = homestead[1].textContent;