Assume the following code
How do I remove the <br> tag following (all) <a> elements with class="foobar"?
The following does not work:
$("a.foobar").next().remove();
Why not?
Peter