Hi, I think it has to be an easy question but I have been searching around and have not found the answer anywhere.
The think is that I have an html page with some scripts (in the body) like this one:
<script type="text/javascript">grf();</script>
The grf() function is defined in an external .js file. The question is: is this function executed once the browser has loaded the page AND all of its external js files? Or it can be the case that the function is executed before the .js files are loaded? And if so, how can I prevent this?