You don't show us at all how your cookie is constructed, so how do you think we can help you?.

My advice is to store the cart items in the session on the server side, and not in the client cookie. From Javascript, just reload the part of the cart page after removing an item.

Upon looking further at the fragments of your code, it seems you never store the items on the client but only store the items in the session already. So from your Javascript, you will need to send a request to your Perl code to remove an item. I recommend doing that without Javascript first and later add something like the jQuery .load() function to reload parts of an HTML page.


In reply to Re: Javascript to edit cookie set by perl by Corion
in thread Javascript to edit cookie set by perl by mailmeakhila

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.