I have a series of different divs on a page each with two buttons, one which I would like to add 1 to the running total and one which subtracts 1 from the running total when clicked.
I know that this piece of jquery will set the cookie for div1 to 1, but how do I add and subttract to this total?
$('.div1').click(function() {
$.cookie('div1', '1');
});
Also, on a related note, is it possible to store all of this data for every div on the page in a single cookie. It seems inefficient to have a separate cookie tracking the running total for each div. I will be using php to access the cookie/s to use the running totals.