I need to add all the values but they present "$" and "." therefore when adding them I return a "NaN", I need to make a replace how I can integrate that into my js?
<table id="table">
<thead>
<tr>
<th>Producto</th>
<th>valor</th>
</tr>
</thead>
<tbody>
<tr id="1">
<td>Licuadora</td>
<td>$40.000</td>
</tr>
<tr id="2">
<td>Lavadora</td>
<td>$40.000</td><!-- necesito quitar los signos-->
</tr>
</tbody>
</table>
JS: // go through the value td and add all the values
var Total = 0;
$('#table tbody > tr').each(function () {
Total += parseInt($(this).find('td:eq(1)').text());
});
alert(Total);//me retorna un NaN por que contiene signos