Any one can help me get the value from the Table td with the price. Thanks
$(document).ready(function () {
var v = parseInt(
$(".product-table:first-child .product-table__col--totals")
.text().trim().replace(',', '')
);
var totalValue = v / 3 + 6090;
console.log(totalValue);
$("#subscipt_total").text("After multiplying the Value 10=" + totalValue);
});