JSFiddle - React, Tailwind, and code Playground
by jeffgw
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<div id="targets"></div>
JavaScript
$(function() {
for (i = 0; i < 15; i++) {
$('#targets').append('<div style="height:50px; width:50px; background-color:#09C; border-radius:30px; float:left; margin:10px;" class="target">');
}
$( ".target" ).click(function() {
var i = 0;
$(this).hide('explode');
});
});