﻿$(document).ready(function() {
    //remove the cart
    $('.Delete').click(function(e) {
        e.preventDefault();
        var id = $(this).parents('tr:first').attr('id');
        
        //use in case for the need to expand this method
        //var url = $(this).attr('href');
        //url = url.substring(0, url.indexOf('?'));

        $.post('/Cart/RemoveCart', { cartId: id }, function(data) {
            removeRow(data);
        });
    });

    //removes the row
    function removeRow(result) {
        if (result != '0') {
            $('#' + result).remove();
        }
        else {
            alert('Kunde ej radera');
        }
    };
});
