JSFiddle - React, Tailwind, and code Playground
by Paul Leech
HTML
<img id="myimg" src="http://placehold.it/200x100" />
JavaScript
var myimg = document.getElementById('myimg');
myimg.insertAdjacentHTML("afterend", "This is my caption.");
by Paul Leech
<img id="myimg" src="http://placehold.it/200x100" />
var myimg = document.getElementById('myimg');
myimg.insertAdjacentHTML("afterend", "This is my caption.");