JSFiddle - React, Tailwind, and code Playground

by Artem

JavaScript

'use strict';

const iframe = document.createElement('iframe');
iframe.src = '//google.com';
iframe.addEventListener('click', () => {
	console.log(1);
},false);
document.body.appendChild(iframe);