I have an iframe with id="iframe" Inside my footer of index.php, I want to include a javascript file after the iframe loads.
So far I have:
<script>
$('#iframe').onload = function () {
</script>
<script src="/js/myjsfile.js"></script>
<script>
}
</script>
However, the webpage is getting angry and saying: SyntaxError: Unexpected end of input (for the {) and SyntaxError: Unexpected token } How can I include these files after load of another?