I'm looking for a td
with jQuery.
var linhaTr = $("tbody").find("tr:first-child");
var tamanhoTd = linhaTr.find("td:nth-child(2)").text();
and it returns me for example R$ 5,00
. But I need to get back to make calculations the 5.00
value. Take the R $ and change the comma by the point ...
Furthermore ...
I would like to know if it is "Regular Expressions" that I need to be able to capture the text in a special way, getting only a few things, I need to study this and I do not know the right name.