JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://brandonaaron.net/javascripts/plugins/livequery.js"></script>

JavaScript

// Alert when #div exists on the page.

$('div').livequery(function(){
 console.log("Added a new div" + $(this).attr('id')); 
}
);

// Set a timeout and add #div to the page
var counter = 0;
setInterval(function(){
        $('body').append("<div id='div" + counter + "'>Hello World</div>");
        counter++;
    }, "1000")