JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="iframe" srcdoc="<html><head></head>
                            <body><input type='button' id='button' />
                            </body></html>"></iframe>

JavaScript

$("#iframe").contents().find("body").find("#button").click(function () {
    alert('clicked')
});