I'm new to using Jquery. What I'm trying to achieve is to fade in any element on the page. However my header and footer are being displayed by using PHP include() am I able to use Jquery with this type of formatting? I'm unable to get anything to fadeIn().
<!DOCTYPE html>
<head>
<title> <Header> </title>
enter code here
<script src="jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function(){
$('#nav').fadeIn(3000);
});
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Films.com</h1>
</div>
<div id="content">
<div id="nav">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="film.php">Film</a></li>
<li><a href="add_film.php">Add a Film</a></li>
</ul>
</div>