JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="this-iframe" src="http://jsfiddle.net/9fypG/1/show/" width="300" height="1700" scrolling="no"></iframe>

JavaScript

$(document).ready(function () {
    $('#this-iframe').load(function () {
        $('#this-iframe').contents().find('img').live({
            click: function () {
                alert('clicked img');
            }
        });
    });
});