JSFiddle - React, Tailwind, and code Playground
by darcyclarke
HTML
<div class="container"></div>
CSS
.container {
background: #bada55;
width: 400px;
height: 125px;
}
JavaScript
// This is really powerful, lots you can do with this
$(".container").delegate("*","DOMNodeInserted",function(e){
console.log(this);
});
// Example
$("<img src='http://www.pluspets.net/wp-content/uploads/2010/07/Cutest-Puppies7.jpg'>").appendTo($(".container"));