jQuery(document).ready(function($){var seopressCartUpdateTimer=null;var seopressCartDebounceMs=500;function seopressSendCartEvent(){$.ajax({method:'GET',url:seopressAjaxAnalytics.seopress_analytics,data:{action:'seopress_after_update_cart',_ajax_nonce:seopressAjaxAnalytics.seopress_nonce,},success:function(data){jQuery('body').append(data.data)},})}
jQuery(document.body).on('updated_cart_totals wc_cart_emptied removed_from_cart added_to_cart',function(){if(seopressCartUpdateTimer){clearTimeout(seopressCartUpdateTimer)}
seopressCartUpdateTimer=setTimeout(seopressSendCartEvent,seopressCartDebounceMs)})});