JSFiddle - React, Tailwind, and code Playground

JavaScript

var finalContent = $('<p />', {
    text: 'hello yourself'
}).append($('<img />', {
    src: 'http://jsfiddle.net/favicon.ico'
}));
finalContent.find('img').height(100);
alert(finalContent.attr('outerHTML'));
$(document.body).append(finalContent);