JSFiddle - React, Tailwind, and code Playground

by nirus

HTML

<div id="one"></div>
<div id="two"></div>

JavaScript

var myname = 'John Doe';

//This is using Jquery
var htmltext = 'Hello <p style="color:red">'+myname+'This is a test</p>'
$('#one').html(htmltext);


//This is pure javascript
document.getElementById('two').innerHTML='<p style="color:red">'+myname+'This is a test</p>';