JSFiddle - React, Tailwind, and code Playground
by Eric Howe
HTML
<div id="box"></div>
JavaScript
var width = 10;
var height = 10;
var positionX = 10;
var positionY = 10;
var html = '<div style="display:block; float:left;width:'+width+'px; height:'+height+'px; margin-top:'+positionY+'px;margin-left:'+positionX+'px;border:1px dashed #CCCCCC;"></div>';
var $html = $(html);
$html.attr('id', 'myid');
$('#box').append($html);
alert($('#myid').length);