Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

4 Answers

up vote 11 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/

share|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
$("#system br:lt(2)").remove();
share|improve this answer

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.

share|improve this answer

Also try nth-child.

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

removes first and second instance of br within #system

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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