JSFiddle - React, Tailwind, and code Playground
by cryptoquick
HTML
<script src="https://raw.github.com/ericmmartin/simplemodal/master/src/jquery.simplemodal.js"></script>
JavaScript
function PopImg(){
$.modal("<img id='ScubbedImg' src="+ 'http://i.imgur.com/EkJM9ye.png' +">", {
overlayClose:true,
autoResize:true
});
$('#ScubbedImg').bind('load', function () {
$.modal.update($(this).height(), $(this).width());
console.log(this);
});
}
PopImg();