Script element in HTML5 should have separate end tag!
To function in all browsers,
script element should have an explicit end tag.
Best:
<script src="jquery.js" > </script>Do not use:
<script src="jquery.js" /><!-- DON'T DO THIS -->