JSFiddle - React, Tailwind, and code Playground
JavaScript
var img = $("<img />").attr('src', 'http://cdn.sstatic.net/stackoverflow/Img/wmd-buttons.png')
.load(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
console.log("Error");
} else {
console.log("render");
// This does output, but not correctly...
$("body").append('<div class="share-image"></div>').append(img);
}
});