My customer's CMS from the last century outputs the following code.
And I'd like to remove only the first two BR tags with jquery.
<div id="system">
<BR CLEAR="ALL"><BR>// I want to remove both BR.
...
<BR>...
...
<BR>
I assume something like this. But I am not sure.
$('#system br').remove();
Could anyone tell me how to do this please?
Thanks in advance.