jQuery().ready(function() { $('.shoppingcart .productlist a').live('click', function() { $(this).parent().css({ opacity: '0.5' }); $.post($(this).attr('href'), { }, function(data) { $('.shoppingcart').html(data); if(data.indexOf('Your shoppingcart is empty.') > 0) { $('.shoppingcart_next').remove(); if($('.left_side .shoppingcart_link').length > 0) { $('.left_side .shoppingcart_link').html('Shoppingcart'); } } }); return false; }); $('.line .cell.remove').live('click', function() { $(this).parent().css({ opacity: '0.5' }); $title = $(this).parent().parent().find('.title') var url = $(this).attr('href'); $.post(url, { }, function(data) { $('.center_content .line, .deconote').remove(); $title.after(data); if($('.shoppingcart').length > 0) { $.post($($('.shoppingcart .productlist a').get(0)).attr('href'), { }, function(data) { $('.shoppingcart').html(data); if(data.indexOf('Your shoppingcart is empty.') > 0) { $('.shoppingcart').html('
Your shoppingcart is empty.
'); $('.shoppingcart_next').remove(); if($('.left_side .shoppingcart_link').length > 0) { $('.left_side .shoppingcart_link').html('Shoppingcart'); } } }); } }); return false; }); });