my pages wont load. can anyone suggest what is wrong? I tried changing the file path to the different files in case that was what was causing the problem. but still none of them are loading. what should happen is that when the user clicks the link, the page should be loaded inside the div.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> jquery example</title>
<style>
</style>
</head>
<body>
<a class="menu_top" href="pages/home1.php">Home</a>/
<a class="menu_top" href="portfolio.php">Portfolio</a>/
<a class="menu_top" href="contact.php">Contact</a>
<div id="#content_area"></div>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery_code.js"></script>
</body>
Jquery
$(document).ready(function() {
$('#content_area').load($('.menu_top:first').attr('href'));
});
$('.menu_top').click(function() {
var href = $(this).attr('href');
alert('clicked');
$('#content_area').hide().load(href).fadeIn('normal');
return false;
});
I am able to see the alert when i click on the .menu_top element. but it wont load it on the page. i tried renaming the files to .html and it still wont worl. i am running on a xammp local host, and that seems to work fine for everything else. i checked my console for errors and it doesnt return any errors.
i just finished some of the previous ajax tutorials and they loaded the data without any problems, so i ruled out that it was something concerning the local host.
console.log($('.menu_top:first'));? – Webnet Apr 10 '12 at 19:51