$('.add-to-cart').click(function(){
var id = $(this).attr("rel");
$.ajax({
type: 'POST',
url: '/functions/addtocart.php',
data: 'id='+id,
dataType: 'html',
cashe: false,
seccess: function(data){
loadcart();
}
});
});
function loadcart(){
$.ajax({
type: 'POST',
url: '/functions/loadcart.php',
dataType: 'html',
cashe: false,
seccess: function(data){
$('.cart-contents').html(data);
}
});
}