[jQuery] removing a row dynamically...

[jQuery] removing a row dynamically...


Hi,
I have the requirement to dynamically add and remove a row. Below is
the code to dynamicaaly remove a row and it works fine in Mozilla but
not in IE. Can anyone please advise me on this. Thanks.
$('a.remove').click(function(){
$(this).parents("tr").remove();
});
- M