items
.Item.remove
Remove item from the cart:
var myItem = simpleCart.add({ name: "Cool Thing" , price: 4, quantity: 1 });
simpleCart.quantity(); // 1
myItem.remove();
simpleCart.quantity(); // 0
Comments
- There are no comments for this entry yet.