Jquery add href instead of click event
- by Cesar Lopez
Hi all,
I need to use href instead click event so I can use hover in the following statement.
$(document).ready(function(){
$(".btnDeleteOther").live("click", function(){
$(this).closest('tr').not(':only-child').remove();
});
Any Ideas?
Thanks.