$.getJSON('/json/cart', function (data) {
    if (data.cart_info && data.cart_info.length) {

        $.each(data.cart_info, function (i, item) {
            console.log(item);
            $('.cartUpdate').append('<tr><td><span class="item_qty">' + item.item_qty + '</span> &times; <span>' + item.title + '</span></td><td style="text-align:right"><span class="cST item_subtotal">' + item.item_subtotal + '</span></td></tr>');
        });

        $('.cartUpdate').append('<tr><th>Total<span style="text-transform:lowercase; font-weight:normal;">(excl. tax and shipping)</span></th><th style="text-align:right" class="check_order_subtotal"><span class="cST">' + data.order_subtotal + '</span></th></tr>');

        //$('.checkoutbutton').append('<a href="/store/checkout" class="btn btn-success pull-right dlcheckpush" style="margin-top:10px;">Checkout</a>');
        $('.dlcheckpush').removeClass('hide');

    } else {
        $('.empty').html('Your cart is empty');
    }
});
