JSFiddle - React, Tailwind, and code Playground

by mohammadAdil

HTML

<div class="the_notice">
    <span class="time"> | 3:48pm</span>
    To <strong>2013-03-16_10-56-33</strong> By <strong>XYX</strong>
</div>

CSS

.wrap{
    
    color:red;
}

JavaScript

var temp = $('.time');
 $('.time').remove();
$(".the_notice").contents().wrapAll('<div class="wrap" />');
$(".the_notice").prepend(temp);
//$('body').append(temp);