I\'d like to remove only the first two BR tags with jquery.
// I want to remove both BR. ... <
Try it. Replace (max 4 BR) to (1 BR)
$('#system br').each(function() { if ($(this).next().is('br')) { $(this).next().remove(); } });
KS FIDDLE