I\'d like to remove only the first two BR tags with jquery.
// I want to remove both BR. ... <
Also try nth-child.
$("#system > br:nth-child(1), #system > br:nth-child(2)").remove();
removes first and second instance of br within #system
#system