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 a ajax called pages and trying to make the browser's "back" and "forward" buttons work.

These are the handlers:

<li><a href="#" class="ceni">примерни цени</a></li>
<li><a href="#" class="karieri">кариери</a></li> 

And this is my javascript that calls the pages to appear without reloading the whole page(the ajax ):

$('.ceni').click(function(){             
    $.ajax({
    url: 'pages/ceni.php',
    success: function(response) {
    $("#pages").html(response);
    }
     });    
  });



  $('.karieri').click(function(){           
    $.ajax({
    url: 'pages/karieri.php',
    success: function(response) {
    $("#pages").html(response);
    }
     });        
  });

Note: I am not a specialist or something, so please talk to me simply as you can. Thanks a lot :)

share|improve this question
I am using jQuery version 1.5.1. if that is importatnt for the question :) – Bat Jeko Feb 19 '12 at 6:54
You may be looking for this: stackoverflow.com/questions/5377320/… – Zee Tee Feb 19 '12 at 7:07

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.