|
Help with Jquery (to replace PHP Includes)
Hello,
I have a site here ecgamersguild.yakkel.com and i am moving it to my college's webspace but they do not have a php server, so someone suggested jquery.
Now i looked up a tutorial on how to include and i ended up putting in....
<script type=”text/javascript” src=”jquery-1.3.1.min.js”></script>
<script type=”text/javascript”>
$(document).ready(function(){
$(function () {
$(”#nav").load(”navigation.html”);
});
});
</script>
Then where i had the php include i put <div id="nav"></div>
Can someone explain to me what's wrong with this. I am intrigued by jquery but i do not have time to learn it inside out at the moment as i need just this simple include of .html files to work.
Thanks so much for your help!
|