I was using the live() function:
live()
$(\'a.remove_item\').live(\'click\',function(e) {});
I needed to change this to one()>
one()>
I know this is an old post, but this worked for me on a similar case:
$('a.remove_item').live('click', function(e) { e.stopPropagation(); // Your code here });