I noticed today while doing some testing that the way I close my <script>
tag either makes or breaks my page. For example, this works:
<script src="scripts/jquery.js" type="text/javascript"></script>
but this does not:
<script src="scripts/jquery.js" type="text/javascript" />
The file appears to show up when I use IE's Developer Tools, but it seems like it just gets ignored. Has anyone ever seen this or know why it might be happening? Thanks in advance!