Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What is the output of console.log($('.menu_top:first')); ? – Webnet Apr 10 '12 at 19:51
The best way would be to accept Jake's answer about the hash or post your own and accept it, not to edit the title of your question – Xeon06 Apr 10 '12 at 20:07

2 Answers

up vote 5 down vote accepted

Remove the Hash from your ID :)

<div id="#content_area"></div>

to

<div id="content_area"></div>

share|improve this answer

I believe you're looking for $('.menu_top:first-child')

share|improve this answer
i fixed the first-child but my pages still arent loading into the div. the jquery file is in the correct directory (same as a index). i am really racking my brain to figure out what is wrong. i am hoping that i am just made a typo. but nothing seems to be appearing to be wrong. – arboles Apr 10 '12 at 19:54
Have you verified that the ajax request is returning a response? Does the output of console.log($('.menu_top:first-child')); show the element is being shown on the page? – Webnet Apr 10 '12 at 19:57
i solved the issue. it was a typo with an extra hashtag on the <div id="#content"></div> i didnt need a hashtag there – arboles Apr 10 '12 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.