I\'m executing an external script, using a inside
.
Now since the script executes before the pa
You can put a "onload" attribute inside the body
......
Or if you are using jQuery, you can do
$(document).ready(function(){ /*code here*/ })
or
$(window).load(function(){ /*code here*/ })
I hope it answer your question.
Note that the $(window).load will execute after the document is rendered on your page.