<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3c.org/TR/xhtml1/DTD/xhtml1-Transitional.dtd">
<html xmlns =" http://www.w3.org/1999/xhtml "xml:lang="es" lang="es">
<head>
<title>Título de la web </title>
<script src="jquery-1.2.6.pack.js" type="text/javascript"></script>
<style type="text/css">
#box {
background: red;
width:800px;
height:300px;
}
</style>
<script type="text/javascript">
$(function() {
$('a').click(function() {
$('#box').fadeout();
})
});
</script>
</head>
<body>
<div id="box"></div>
<a href="#">click me</a>
</body>
</html>
no encuentro el error, alguien podria ayudarme? gracias!