Hi Chrome,

A big thank you for this marvellous plugin! I've installed it on zc ver 1.5.5f and it is working as designed for.

I need some help for my custom script. I've added plus and minus buttons to the product quantity and uses jquery to update the quantity input. My custom script is still working but I couldn't get it to update the price. Could you help me please?

HTML Code:
<div id="cartAdd">
<h2 id="productPrices" class="productGeneral">S$8.00</h2>
<span id="button-minus" class="addqty-minus">-</span>
<input id="addqty" class="addqtycart" type="text" name="cart_quantity" value="1" maxlength="6" size="4">
<span id="button-plus" class="addqty-plus">+</span>
<input type="hidden" name="products_id" value="1">
<input class="cssButton submit_button button button_in_cart" onmouseover="this.className='cssButtonHover button_in_cart button_in_cartHover'" onmouseout="this.className='cssButton submit_button button button_in_cart'" type="submit" value="Add to Cart">
</div>

Javascript:
$(document).ready(function() {
var chkqty = $('#addqty').val();
$("#button-minus").click(function(){
var addqty = $('#addqty').val();
if(parseInt(addqty)>1) {
var newval = parseInt(addqty) - 1;
$('#addqty').val(newval);
return true;
}else{
return false;
}
});
$('#button-plus').click(function(){
var addqty = $('#addqty').val();
var newval = parseInt(addqty) + 1;
$('#addqty').val(newval);
return true;
});
});

Hope you or someone could help me, thank you guys!