JSFiddle - React, Tailwind, and code Playground
HTML
<div id="divforjohn@x"></div>
CSS
div {
border: 1px solid black;
}
JavaScript
var d = document.getElementById("divforjohn@x");
$(d).html('some text goes here.');
<div id="divforjohn@x"></div>
div {
border: 1px solid black;
}
var d = document.getElementById("divforjohn@x");
$(d).html('some text goes here.');