JSFiddle - React, Tailwind, and code Playground

HTML

<script src="&lt;script src=&quot;http://code.jquery.com/jquery-1.9.1.min.js&quot;&gt;&lt;/script&gt;"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <p>I would like to say: </p>
 <div>I would like to say: </div>

JavaScript

$("p").append("<strong style='color:red'>Hello</strong>");

$("p").after("<strong style='color:blue'>Hello</strong>");

$("div").prepend("<strong style='color:red'>Hello</strong>");
$("div").before("<strong style='color:blue'>Hello</strong>");