Jquery add href instead of click event

Posted by Cesar Lopez on Stack Overflow See other posts from Stack Overflow or by Cesar Lopez
Published on 2010-03-08T09:04:15Z Indexed on 2010/03/08 9:06 UTC
Read the original article Hit count: 226

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about events