Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why the home.html links <a> is not working?

Is there any thing I must do in html pages ?

<script>
$(document).ready(function(){
    $("#content").load(getHash(), function() {
        $("a").click(function () {
            var page = $(this).attr('href').substring(1);
            $("#content").load(page);
      });
    });
});
</script>

<ul>
    <li><a href="#home.html">Home</a></li>
</ul>
<div id="content"></div>

home.html

<ul>
    <li><a href="#page.html">page</a></li>
</ul>
share|improve this question

1 Answer

remove the # from the href values.

share|improve this answer
I believe thats what hes using the substring for – Johan Feb 20 '12 at 21:48
the code is load page after hash – dev.bashar Feb 20 '12 at 21:48

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.