Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Script

function deleteThisRow()
    {
        $(this).closest('tr').fadeOut(400, function(){
            $(this).remove();
        });
    }

HTML

 <tr><td>blah blah blah</td><td><img src="/whatever" onClick="deleteThisRow()"></td></tr>

I've looked this up but the explanations didn't seem at all clear to me.

share|improve this question
1  
Inside deleteThisRow, this will refer to window, not the image. Why don't you bind the event handler with jQuery? – Felix Kling Jan 11 '12 at 9:48

2 Answers

up vote 6 down vote accepted

this keyword in your function does not refer to the element which was clicked on. By default it would refer to the highest element in the DOM, which would be the window.

Try this:

HTML:

<tr>
    <td>blah blah blah</td>
    <td><img src="/whatever"></td>
</tr>

jQuery:

$("tr td img").click(deleteThisRow);

function deleteThisRow() {
    $(this).closest('tr').fadeOut(400, function() {
        $(this).remove();
    });
}
share|improve this answer

Try:


$(document).ready(function() {
 $("img").click(function() {
   $(this).closest('tr').fadeOut(400, function(){
            $(this).remove();
        });

 });
});

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.