[jQuery] jquery not responding
I am trying to follow the tutorials on
http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/
but for some reason cannot follow along with the very first tutorial.
This is ridiculous. Is there something very simple that I am doing
wrong?
Here is my html file.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://
www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="css/register.css" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(function(){
$("p").fadeOut(4000);
)};
});
</script>
<title>registration</title>
</head>
<body>
<div id="box"></div>
<a href="#">Click Me!</a>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. It has survived not only
five
centuries, but also the leap into electronic typesetting, remaining
essentially unchanged. It was popularised in the 1960s with the
release
of Letraset sheets containing Lorem Ipsum passages, and more recently
with desktop publishing software like Aldus PageMaker including
versions
of Lorem Ipsum.
</body>
</html>
Here is my register.css
@CHARSET "ISO-8859-1";
#box{
background: red;
width: 300px;
height: 300px;
}
p{
cursor: pointer;
}