views:

78

answers:

1

I know clientside webcarts could be modified by the visitor, in my application that is OK. The only webacart without serverside logic and validation I have found is simplecart-js. However it is not using jquery.

Can anyone suggest a jquery cart with the same functionalities, or even more basic? I assume it would make use of the ezcookie plugin to store the cart contents into a cookie.

+1  A: 

I've seen this plugin for jQuery called Smartcart that sounds like exactly what your looking for

Example

Documentation

Download

Mark
I wanted to use jquery bc it is used for other things in my application, hosted at google, and so cut on load times. I assumed that the actual code for the cart would be just a few kb's on top of the jquery core...However looking at the smartcart footprint, together with ezcookie to give it storage;jquery-1.3.2.min.js 55.9kbjquery-ui-1.7.2.custom.min.js 188.4 kbjquery.scrollTo-min.js 2.2 kbSmartCart.js 8.5 kb+ezcookie 5.3kbThe non-jquery simplecart comes in at only 15.1 kb, minified. So jquery might be easier but certainly not smaller?
newnomad
...well, it's the best I got...
Mark