i have two tag, which has same class but different trigger events, following is example:
<a class="remove">remove this</a>
<div class="status"><a class="remove">Remove this status div only</a></div>
in jquery i have it like
$(".remove").live('click', function()... (this gets trigger for both)
$(".status_update > .remove").live('click', function()... (i want this to trigger for status div remove link)
i need to do this in two different triggers, cant do it in same trigger call.