Just a simple question, this has always bugged me.
I always wondered why JS includes and code were split into separate script tags. jQuery, Analytics, and others do this:
<script src="/js/scriptname.js" type="text/javascript"></script>
<script type="text/javascript">
//code here
</script>
Why use multiple tags? Why not:
<script src="/js/scriptname.js" type="text/javascript">
//code here
</script>