JSFiddle - React, Tailwind, and code Playground
by pmatseykanets
HTML
<div class="green-column infoblock" data-type="description1">
<i class="icon-ok"></i>
Click Me
</div>
<div class="green-column infoblock" data-type="description2">
<i class="icon-ok"></i>
Or me
</div>
JavaScript
$(function(){
$(".infoblock").click(function(){
$("<div>" + $(this).attr("data-type") + "</div>").dialog({modal: true, buttons: [ { text: "Ok", click: function() { $(this).dialog( "close" ); } } ] });
});
});