OK here is my HTML
<div class="parent">
<div><a class="remove">Remove</a></div>
<div><a class="remove">Remove</a></div>
<div><a class="remove">Remove</a></div>
</div>
Jquery
$(".remove").click(function (e) {
e.preventDefault();
$(this).parent('div').remove();
});
So what I want is when I click on a one particular Remove link, that Div should get removed but currently all Divs are getting removed. Perhaps when I am clicking on one remove, it is selecting all removes. Please help. Thank you.