Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My structure is like this:

<p>something</p>
<br/>
<br/>
<p>ssddfgdfg</p>
<br/>
<br/>
<p>dsdfsfsdfsdfsd</p>
<br/>
<br/>

I want to remove one br tag whenever 2 br tag comes together, like this:

<p>something</p>
<br/>
<p>ssddfgdfg</p>
<br/>
<p>dsdfsfsdfsdfsd</p>
<br/>

How can I achieve this using jQuery?

share|improve this question

3 Answers

up vote 6 down vote accepted

Try the immediate sibling selector

http://jsfiddle.net/u2vS6/

$('br + br').remove();
share|improve this answer
Wow! That was simple – apnerve Nov 24 '11 at 7:31
Thanks, wasn't aware of such selector! – Shadow Wizard Nov 24 '11 at 7:35
+1 for some new selector – user12345 Nov 24 '11 at 8:02

You can try doing

$('br').next('br').remove();

This will remove the second <br/>. There might be a better solution though.

EDIT: As I said other answers were better :)

share|improve this answer

Another solution,

$('br').prev('br').remove();
share|improve this answer

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.