function updateCart(itemCode, qty, success) { $('#cart-content-holder').load('/process/store/update-cart.php #cart-new-content', { 'cartId': "CART-4c83731c6fdf8", 'itemCode': itemCode, 'quantity': qty }, function(responseText, textStatus, xhr) { $('#cart tbody').remove(); $('#cart-content-holder table tbody').insertAfter($('#cart thead')); $('#cart tbody').attr('id', 'cart-content'); if ( typeof(success) == "function" ) { success(this); } return true; } ); return true; } function _toggle_cart_details() { if ( $('#cart').hasClass('expand') ) { $('#cart-details').html('« Hide details'); $('#cart-total .label').attr('colspan', '4'); } else { $('#cart-details').html('See details »'); $('#cart-total .label').attr('colspan', '1'); } }