I'm trying to learn jQuery and I don't understand why it doesn't at all work. My index.html is simple, as you can see below:
<!DOCTYPE html>
<html>
<head>
<title>JQuery Tutorial</title>
</head>
<body>
$(function() { alert("Hello world!"); });
<script src="js/jquery-1.8.0.min.js"></script>
</body>
</html>
I am hosting the website with XAMPP in my local machine, and the file structure is this, under htdocs:
XAMPP/xamppfiles/htdocs
...
jquerytuts2/
index.html
/js
jquery-1.8.0.js
jquery-1.8.0.min.js
The jQuery just displays as it is in the browser, plain text. I've seen this on Chrome, Safari, Firefox, and I am using a 2012 MacBook Pro running OSX 10.8.1.
