最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove <br> tag using jquery? - Stack Overflow

programmeradmin1浏览0评论

Good Day.

Actually it is the wordpress site but i need the general solution using jquery(if feasible) I trying to remove the
tag next to end of the div.

See I am using the div as like here

    <div class="one_third">
<p>This is for testing</p>
    </div>
    <br> <!--This one -->
    <div class="one_third">
    </div>
    <br><!--This one -->
    <div class="one_third">
    </div>
    <br><!--This one -->

In the above example i am using the class of one_third in a div inside this div i am using br tag too. But all i am want to remove the br tag which is in outside the div i mean in the end of the div in jquery.

</div>
<br>

I am not sure how to do this in jquery (Actually i try with wordpress disable wpautop is removing the br tag which is inside the div too (I don't want to remove the br tag inside the div only outside the div i mean end of the div )).

Any suggestion would be great :)

Thanks, vicky

Good Day.

Actually it is the wordpress site but i need the general solution using jquery(if feasible) I trying to remove the
tag next to end of the div.

See I am using the div as like here

    <div class="one_third">
<p>This is for testing</p>
    </div>
    <br> <!--This one -->
    <div class="one_third">
    </div>
    <br><!--This one -->
    <div class="one_third">
    </div>
    <br><!--This one -->

In the above example i am using the class of one_third in a div inside this div i am using br tag too. But all i am want to remove the br tag which is in outside the div i mean in the end of the div in jquery.

</div>
<br>

I am not sure how to do this in jquery (Actually i try with wordpress disable wpautop is removing the br tag which is inside the div too (I don't want to remove the br tag inside the div only outside the div i mean end of the div )).

Any suggestion would be great :)

Thanks, vicky

Share Improve this question asked Jan 17, 2014 at 17:30 Vignesh PichamaniVignesh Pichamani 8,07022 gold badges80 silver badges117 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 7

You should just place the HTML on one line.
wpautop inserts <br> on newlines, so placing the HTML code on one line avoids the entire issue.

<div class="one_third"><p>This is for testing</p></div><div class="one_third"></div><div class="one_third"></div>

The way you structure the markup is everything when wpautop is enabled.

It is the next sibling of the element with class one_third

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

Demo: Fiddle

A non JavaScript solution would be a simple CSS sibling selector

.one_third + br { 
    display : none; 
}

If you really want to use jQuery, you can use the same selector and use remove()

$(".one_third + br").remove();

You can use next() and remove() methods in jQuery for that

$(".one_third").next('br').remove();
发布评论

评论列表(0)

  1. 暂无评论