JSFiddle - React, Tailwind, and code Playground

by trolleymusic

HTML

<p>This is a blob of text
    <div>and you</div>
    <div>are a cunt</div>
</p>

CSS

p { border: 1px dotted #000; margin: 10px; }
div { display: block; }

JavaScript

$(document).ready(function() {
    console.log('-------------------------------------');
    console.log($('body').html());
    $('div').each(function() {
        $(this).replaceWith($('<br>' + $(this).html()));
    });
    console.log($('body').html());
});