Hi all,
I need to use href instead click event so I can use hover in the following statement.
What I am trying to do is to be able to use href as if was click event, so I can attach a function through href, therefore I could use the hover efect which is alredy done on css.
Its a delete button, so it would be a grey x and if you hover goes red, and if you press the button then it would delete the row.
Thanks.
$(document).ready(function(){
$(".btnDeleteOther").live("click", function(){
$(this).closest('tr').not(':only-child').remove();
});
Any Ideas?
Thanks.