3

here is my code:

<iframe style="width:100%; height:500px;"/>
<script>console.log("prpr")</script>

when i run google-chrome /home/roroco/Dropbox/jss/ro-wemedia/ex/test-keydown-for-iframe.html, I doesn't find any output in chrome console, how to run script after iframe?

chikadance
  • 3,591
  • 4
  • 41
  • 73

1 Answers1

9

Your iframeis not closed.

<iframe style="width:100%; height:500px;"></iframe>
<script>console.log("prpr")</script>
Quinox
  • 573
  • 3
  • 14