Created
May 15, 2019 17:58
-
-
Save hemel-cse/c94a06a6993d2c46bbd8d5f71547ed11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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