i have the following tag in html i do not want the $ to be taken as i just want the price for calculations purpose.
<span id="testspan">$101.82</span>
in the above span tag i want to take only 101.82 value for calculations .
I am using the html() to get the value
var csqft_price = $('#testspan').html();
var price= parseFloat(csqft_price);
but i am getting it with $ so i am unable to do calculation how can i do it.