#exceptions is a html table. I try to run the code below, but it doesn't remove the table row.

$('#exceptions').find('tr').each(function(){
    var flag=false;
    var val = 'excalibur';
    $(this).find('td').each(function(){
        if($(this).text().toLowerCase() == val) 
            flag = true;
    });
    if(flag)
        $(this).parent().remove($(this));
});

What is the correct way to do it?

link|improve this question

60% accept rate
Have you tried $(this).remove() ? – Felix Kling Jun 16 '10 at 14:53
feedback

2 Answers

up vote 0 down vote accepted

Assuming the variable flag ever evaluates to true, I think you may just want to do...

$(this).remove();

instead of...

$(this).parent().remove($(this));
link|improve this answer
feedback

Does flag ever turn true? Try alerting it. There's also a less complicated way of removing an element:

if(flag)
    $(this).remove();
link|improve this answer
even $(this).detach() worked!!! – deostroll Jun 16 '10 at 16:46
feedback

Your Answer

 
or
required, but never shown

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