I've got the following code:
<code><html>
<body><br>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js" />
<script type="text/javascript">
alert("debug");
</script>
</body>
</html>
And i don't know why the second script isn't loaded. I've also tried:
<html>
<body><br>
<script type="text/javascript" src="jquery.js" />
<script type="text/javascript">
alert("debug");
</script>
</body>
</html>