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 am using jQuerys .load to Ajax in new content, but this means my back button in my browser is disabled. Is there a way to get the back button to work and show the content that was previously loaded?

This is the code I am using to load the div with new ajax content:

$(".itm1 a").click(function(evt) {
     var page = $(this).attr('href');
     $("#page1").load(page, function() {
        $(this).hide().fadeIn("slow"); 
     });
     evt.preventDefault();
  });

If you need anymore explanation of how I am doing this let me know! PLEASE HELP!!!

share|improve this question
You could utilize window.hash and window.onhashchange. – Neal Aug 23 '12 at 17:33
possible duplicate of Detecting Back Button/Hash Change in URL – Neal Aug 23 '12 at 17:34
I am stumped on how to implement this, could someone write me a snippet? If you would be so kind.... – onei0120 Aug 23 '12 at 17:39

1 Answer

up vote 1 down vote accepted

You could try the following:

function load(page) {
    window.location.hash = page;
}

This can be used to add the hash to the page you are loading.

And on loading you check if hash exists and load the page:

window.onload = function() {
    if (window.location.hash.length > 1) {
        page = window.location.hash.split("#")[1];
        load(page);
    }

}

Edit:

I was a bit quick when reading your question.. For the best performance and compatibily I would recommend you to try the following plugin: https://github.com/cowboy/jquery-hashchange

share|improve this answer

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.