[jQuery] AJAX problem on Internet Explorer

[jQuery] AJAX problem on Internet Explorer


Hello Everybody,
Please go to this page http://iconsushi.com/products/ . and add
the product by clicking on + icon. The product icon shows up in the
shopping cart by AJAX. Now when you click on the product icon (in
shopping cart) again it gets removed from the shopping cart. This
functionality is working fine in Firefox but not in IE.
Here is the code which i m using for this purpose:
function deletefromcart() {
        var href=$(this).attr('href');
        var o={};
        $("#tooltipHelper").hide();
        $.get( href+'/ajax/', o, function() {
                $('.orders').empty();
                $('.orders').html('<div class="loading">Updating Cart...</div>');
                $("#temp-cart2").height(200);
                $('.orders').load('/shopping_carts/minicart/',function(){
                $('.deletefromcart').bind('click', deletefromcart);
$
('.deletefromcart').ToolTip(
{                                                                             className: 'inputsTooltip',
position:
'mouse',                                                                        delay: 150
                            }
                        );
                });
             });
        return false;
    }
Any help is appreciated .
Regards,
Sharan