JSFiddle - React, Tailwind, and code Playground

by adelura

JavaScript

var iframe = document.createElement('iframe');

document.body.appendChild(iframe);

var _body = iframe.contentDocument.body;
_body.innerHTML = '<p>Siema</p>';

var p = _body.getElementsByTagName('p')[0];

p.addEventListener('click', function () {
    window.location.href = 'http://arturdelura.com';
});