Might already be answered but I couldn't find it easily.
Case 1:
<script type="text/javascript" src='external'>
'Some script here'
</script>
Case 2:
<script type="text/javascript" src='external'></script>
<script type="text/javascript">
'Some script here'
</script>
So in case 1, does the src lib get loaded first so you can use it in the internal script block? I tried and apparently, it doesn't work. (What I did was store a variable and it didn't work)
If it is supposed to work, is it any different from case 2?