vote up 4 vote down star
4

I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally.
It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL.

//general functions
function getUrl(u)    {
     return u + '.html';
}
function loadURL(u)   {
     $.get(getUrl(u), function(r){
               $('#main').html(r);
          }
     );
}
//allows bookmarking
var hash = new String(document.location).indexOf("#");
if(hash > 0)
{
     page = new String(document.location).substring(hash + 1);
     if(page.length > 1)
      loadURL(page);
     else
      loadURL('news');
}
else
     loadURL('news');

But I can't get the back and forward buttons to work.

Is there a way to detect when the back button has been pressed (or detect when the hash changes) without using a setInterval loop? When I tried those with .2 and 1 second timeouts, it pegged my CPU.

flag

67% accept rate

2 Answers

vote up 4 vote down check

Use jquery browser plugin instead get it here, and regarding your full ajax navigation try to have SEO friendly ajax approach otherwise your pages shown nothing in browser with js limitation

link|flag
The history plugin worked, and thanks for the link on SEO. – Tom Ritter Oct 6 '08 at 3:37
vote up 0 vote down

I've never attempted to do this, but it seems like this has been discussed on the internet.

Here looks to be a good place to start: http://www.hunlock.com/blogs/Mastering_The_Back_Button_With_Javascript

link|flag

Your Answer

Get an OpenID
or

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