I have made a super simple test case of a problem I'm having with IE6 and jQuery 1.3.2
In IE6 I only see the first alert box, it will render the page but it seems there is something in the js file that is causing IE6 to stop processing the scripts in the <head>
content and thus not show the 2nd alert box. Chrome works as expected.
Needless to say this was a much more complicated problem, but I've managed to reduce it to this: IE6 seems to "fail" and stop processing javascript in the <head>
area after loading the 1.3.2 javascript file.
Any Ideas?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>test</title>
<link rel="Stylesheet" href="main.css" />
<script type="text/javascript">
alert("here 1");
</script>
<script src="jquery-1.3.2.js" type="text/javascript" />
<script type="text/javascript">
alert("here 2");
</script>
</head>
<body>
nothing to see here... move along...
</body>
</html>