I have a number of sources of javascript and don't really know the
sequence of when each gets loaded.
<SCRIPT FOR="window" EVENT="onLoad">
var tmp = "where are you";
</script>
<script language="JavaS cript">
alert(tmp);
</script>
<script language="JavaS cript" src="code.js"></script>
Are they loaded based on the order they are seen in the page?
sequence of when each gets loaded.
<SCRIPT FOR="window" EVENT="onLoad">
var tmp = "where are you";
</script>
<script language="JavaS cript">
alert(tmp);
</script>
<script language="JavaS cript" src="code.js"></script>
Are they loaded based on the order they are seen in the page?
Comment