I\'d like to remove only the first two BR tags with jquery.
// I want to remove both BR. ... <
Try
$('#system br:first').remove(); $('#system br:first').remove();
The first line removes the first br, then the second br becomes the first, and then you remove the first again.
br