carolineschnapp
3/2/2012 - 9:25 PM

Add this at the bottom of cart.liquid to auto-save your cart attributes

Add this at the bottom of cart.liquid to auto-save your cart attributes

<script type="text/javascript" charset="utf-8">
//<![CDATA[
jQuery(function() {
  jQuery(window).unload(function() {
    var params = {
      type: 'POST',
      url: '/cart/update.js',
      data: jQuery('form[action="/cart"]').serialize(),
      dataType: 'json',
      async: false
    };
    jQuery.ajax(params);
  });        
});  
//]]>
</script>