I\'m executing an external script, using a inside .
Now since the script executes before the pa
These solutions will work:
or
document.onload = function ...
or even
window.onload = function ...
Note that the last option is a better way to go since it is unobstrusive and is considered more standard.