Skip to content

Instantly share code, notes, and snippets.

@hemel-cse
Created May 15, 2019 17:58
Show Gist options
  • Save hemel-cse/c94a06a6993d2c46bbd8d5f71547ed11 to your computer and use it in GitHub Desktop.
Save hemel-cse/c94a06a6993d2c46bbd8d5f71547ed11 to your computer and use it in GitHub Desktop.
$(document).on("click",".tm-qty-minus", function () {
var p = $(this).parent().find('input').val();
var pp = $(this).parents().find('.price').html();
var price = pp.slice(1);
price = parseFloat(price)
$('span.woocommerce-Price-amount.amount').html('<span class="woocommerce-Price-currencySymbol">$</span>'+(p*price).toFixed(2));
console.log(p, pp, price);
});
$(document).on("click",".tm-qty-plus", function () {
var p = $(this).parent().find('input').val();
var pp = $(this).parents().find('.price').html();
var price = pp.slice(1);
price = parseFloat(price)
$('span.woocommerce-Price-amount.amount').html('<span class="woocommerce-Price-currencySymbol">$</span>'+(p*price).toFixed(2));
console.log(p, pp, price);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment