So, I'm trying to get an element inside of an iframe srcdoc using jQuery/javascript, and say, attach a click handler. e.g..
<iframe id="iframe" srcdoc="<html><head></head><body><input type="button" id="button" /></body></html>"></iframe>
The following code does not work:
$("#iframe").find("#button").on("click", function{ alert('clicked'); });
Nor does using $("#iframe").contents() or several other methods.
How can I attach event handlers to elements inside an Iframe srcdoc?