Problem dragabble/droppable ie link

Problem dragabble/droppable ie link


Hi there we have a problem we have a draggable that contains a link
<div class="dragdrop"><a class="buy_drag" href="somelink.html"><img
src="somesrc" /></div></div>
$(".dragdrop").draggable({revert: 'invalid', helper:'clone',cancel:
'buy_drag'});
makes it draggable
$("#putin_cart").droppable({
            accept: '.dragdrop',
            drop: function(ev, ui) {
// do something
            }
        });
makes the droppable zone
firefox handels all right but if you drag the element in IE and put it
on the droppable zone the link in the a href is executed
are there any solutions on this??