Prev: JQuery and javascript not runing in the head tag
Next: GeoLocation forwarding on international sites and Bing
From: John Morrill on 27 Jun 2010 21:32 Greetings! When I create a simple page like this! <html> <head> <title>Test</title> <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript" /> <script type="text/javascript"> alert("From Head"); </script> </head> <body> <span>Click me!</span> <script type="text/javascript"> alert("From Body"); </script> </body> </html> Only the second alert is displayed. When I comment out the jquery library as shown below, both alerts are shown. <html> <head> <title>Test</title> <!-- <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript" /> --> <script type="text/javascript"> alert("From Head"); </script> </head> <body> <span>Click me!</span> <script type="text/javascript"> alert("From Body"); </script> </body> </html> The jquery library is the one supply with VS2010. I am sure I am doing something obvious wrong, but I can not see it. Also, if this is not a forum that Microsoft engineers support, can some please let me know. I assume comming from the MSDN page, I got that right one. But in the past I made a mistake and keep wait for a reply. -- Cheers! John |