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,095
  • 4
  • 33
  • 63

1 Answers1

9

Your iframeis not closed.

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