I had this code on my website
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"/> <script type='text/javascript' src='/lib/player/swfobject.js'></script>
swfobject did not work (did not load).
After changing the code:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script> <script type='text/javascript' src='/lib/player/swfobject.js'></script>
It worked fine.
The document is parsed as HTML5.
I think this is funny. Well, I provided a tag that is closed, and the self-closing tag does not match. So I would understand if jQuery might not load (although I find it funny).
But I do not understand that jQuery is loading, but the next correctly written tag is not?
html html5 xhtml
The Surrican Dec 25 '10 at 21:39 2010-12-25 21:39
source share