Creating a JavaScript shopping cart. Confused about how I should store the added cart data.
I have been trying to make it so when the user clicks add to cart it adds one variable to another. However this hasn't been going so well. Should I create an object or go down a different route. Below I will explain a bit more as to how I am planning on making my system work.
One page with items. Under items there is an add to cart button. I would like that to add information to a variable. Starting with just adding the price. Then that info will be posted with a html form to payment gateway.
Please note that I am doing this out of personal interest and it isn't going on a live website. Just a learning curve.