We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
index.html
<iframe id="frameID" width="200" height="200" srcdoc="<html><body></body></html>"></iframe> <script> var hello = 'hello'; window.onload = function() { var script = "<script type=\"text\/javascript\" src=\"script.js\" async=\"async\"><\/script>"; $('#frameID').contents().find('body').append(script); } </script>
script.js
alert(hello)
I expect the script is executed in iframe body