up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

73% accept rate
feedback

4 Answers

up vote 10 down vote accepted

Use :lt():

$('#system br:lt(2)').remove();

:lt() takes a zero-based integer as its parameter, so 2 refers to the 3rd element. So :lt(2) is select elements "less than" the 3rd.

Example: http://jsfiddle.net/3PJ5D/

link|improve this answer
1  
forgot about lt and gt +1 for smallest example. – RobertPitt Sep 8 '10 at 13:08
woah. i didn't even realize this existed. – David Murdoch Sep 8 '10 at 13:09
1  
@David - Haha. I'm in the same boat. I love how I learn something new on SO every day. @Andy - Thanks! +1 – JasCav Sep 8 '10 at 14:31
feedback
$("#system br:lt(2)").remove();
link|improve this answer
feedback

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.

link|improve this answer
feedback

Also try nth-child.

$("#system > br:nth-child(1), #system > br:nth-child(2)").remove();​

removes first and second instance of br within #system

link|improve this answer
1  
Note that if there were further child elements with <br> elements inside them, those would be removed too. You could work around this using the immediate child selector, >. – Andy E Sep 8 '10 at 13:10
great point +1. – RobertPitt Sep 8 '10 at 14:23
and +1 for your edit :-) – Andy E Sep 8 '10 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.