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.

i'm trying to use balupton's history.js and found also this: https://gist.github.com/854622

But i don't get it to work like my hash code did:

  $('#menu li a').click(function(event){

    event.preventDefault();

    var toLoad = $(this).attr('href') + ' #content';

    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);

    if ($("#main").css('top') == '100px') {

      $("#content").transition({left:'1200px'}, 900, 'out', function(){

        $("#load").load(toLoad, null, function(){

          $("#content").transition({left:'0px'}, 900, 'out');       

          var contentHeight = $("#content").outerHeight(true)+258+$("#footer").outerHeight(true);

          if(contentHeight<parseInt($("body").css("min-height"))){
            contentHeight = "100%";
          }

          $("#page").stop(true).animate({height:contentHeight}, 1000, "easeOutCubic");

        });

      });

    }else{

I load my "#content div" into the "#load div" and can't figure out how to do it with history.js. It changes the content of the whole body...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.