I want to play around with some jQuery, but I can't get anything to work. I must be missing something somewhere...I posted my test page below. When I click the link it should fade the red box out, but nothing happens. I don't get any errors in Firebug and I know my path to the javascript file is correct. Any ideas?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="subject" content="" />
<meta name="Description" content="" />
<meta name="Keywords" content="" />
<title></title>
<link href="xxx.css" rel="stylesheet" type="text/css" media="screen"/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="http://www.site.com/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<style type="text/css">
#box {background-color: red; width: 300px; height: 300px;}
</style>
<script type="text/javascript">
$(function() {
$('a').click(function() {
$('#box').fadeOut();
});
});
</script>
</head>
<body>
<div id="box">
</div>
<a href="">fade Out</a>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="subject" content="" />
<meta name="Description" content="" />
<meta name="Keywords" content="" />
<title></title>
<link href="xxx.css" rel="stylesheet" type="text/css" media="screen"/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="http://www.site.com/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<style type="text/css">
#box {background-color: red; width: 300px; height: 300px;}
</style>
<script type="text/javascript">
$(function() {
$('a').click(function() {
$('#box').fadeOut();
});
});
</script>
</head>
<body>
<div id="box">
</div>
<a href="">fade Out</a>
</body>
</html>
Comment