I\'d like to remove only the first two BR tags with jquery.
// I want to remove both BR. ... <
Additionally if you only want to remove the last br only you can try;
$('#elementID br:last').remove();
Lets say that the br follows a , you can try
$('#elementID strong+br:last').remove();