Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
it would probably help just to show us your code and where specifically you are having issues. – John Nolan Nov 26 '12 at 14:08
@user1735398 - Add your code to your question by editing it, please! – Lee Taylor Nov 26 '12 at 14:29

1 Answer

You may want to take a look at: http://simplecartjs.org/

but if you want to build it from scratch, you probably want to store the contents of the cart in a cookie as this will also save the contents should the page be refreshed. I would probably use JSON inside the cookie (since it will only accept a string, no arrays).

If you want any more clarification on what I'm going on about, just ask :)

share|improve this answer
+1 for use of json, to the op rather than building a complex string, fill a json object, it will be much easier to debug when time comes ;) – jonBreizh Nov 26 '12 at 14:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.