Does anyone know why this code is not working. This means that the warning does not start.
<iframe/> <script type="text/javascript">alert('hello');</script>
While this warning code BEFORE IFREMEUS works flawlessly. This means the alert is running.
<script type="text/javascript">alert('hello');</script> <iframe/>
It seems that the javascript placed after the iframe is not executing, I cannot find any logic.
javascript html iframe
Claudio redi
source share