22 Feb 2011

JavaScript's history object, pushState and the back button

I’m not sure if it’s the immaturity of the browser support or my general uselessness but I’ve been having some trouble with the JavaScript history API.

I won’t try to explain the history API here, it’s pretty well covered at Mozilla Developer Network and W3. The basics are simple enough:

  • The API provides two methods; pushState which allows you to add a new entry to the browser history and replaceState which modifies the current history entry.
  • New entries added to history using pushState can be navigated via the browser’s back and forward buttons and a popstate event is fired on the window object when this happens.
  • Both methods allow you to attach arbitrary data to the history entry that you can use to reconstruct the appropriate page state when the user uses the back or forward buttons.

I imagine a pretty typical use-case is what I’ve been trying to do with the pagination and sorting on the list pages of Grails scaffolding. Instead of pagination links and column headers causing a full page reload when clicked I intercept the click event and send an AJAX request getting back a page fragment I can use to update the list in the page. Easy enough, however without the history API it will break the back and forward buttons and make deep linking impossible. This isn’t an acceptable option so in true progressive enhancement style I’ve used Modernizr and only apply the AJAX behaviour if the browser supports the history API.

The essence of the script involved is this:

var links =     //... pagination and sorting links
var container = //... the region of the page that will be updated with AJAX

// override clicks on the links
links.live('click', function() {
    // grab the link's URL
    var url = $(this).attr('href');
    // add a new history entry
    history.pushState({ path: url }, '', url);
    // load the page fragment into the container with AJAX
    container.load(url);
    // prevent the link click bubbling
    return false;
});

// handle the back and forward buttons
$(window).bind('popstate', function(event) {
    // if the event has our history data on it, load the page fragment with AJAX
    var state = event.originalEvent.state;
    if (state) {
        container.load(state.path);
    }
});

// when the page first loads update the history entry with the URL
// needed to recreate the 'first' page with AJAX
history.replaceState({ path: window.location.href }, '');

At first glance this works pretty nicely. In browsers that support history (right now that’s just Chrome, Safari and its mobile variants) paginating and sorting the list does not refresh the entire page but the browser’s location bar is updated so copy-pasting or bookmarking the URL will give a valid link to the current page. What’s more, the back and forward buttons can be used to step back through the list pages just as if we reloaded the whole page. In non-history-compliant browsers the list page behaves just like it always did; the links reload the entire page.

Unfortunately there’s a problem that was reported to me on GitHub shortly after I uploaded a demo of my scaffolding work. Where everything falls down is when you paginate the list, follow a link off the page (or just use a bookmark or type in a URL), then use the back button to return to it. In Chrome and iPad/iPhone variants of Safari the browser displays just the page fragment from the last AJAX call, losing all the surrounding page along with styling, scripts, etc.

Where things get very odd is that adding a Cache-Control: no-cache header to the AJAX responses makes the problem disappear, presumably because the browser then doesn’t cache the AJAX response and has to use the historical URL to reload the entire page. Remember, in good progressive enhancement style the URL for the full page or the fragment is the same. The server uses the X-Requested-With header to decide whether to return a fragment or the whole page. Obviously, forgoing caching is hardly an acceptable compromise but it’s interesting in that it reveals what the browser is doing. It can’t, surely, be right for the browser to treat a page fragment the same as a full document!

Curiously in desktop Safari this doesn’t happen and the full page is loaded as you would hope. Looking at the User-Agent header it looks like Safari is using an older version of WebKit (533.19.4 rather than 534.13).

You can see the behaviour in my scaffolding sample app. I also ran into the exact same issue today at work whilst trying to add history navigation to this page (which is a good example of why you’d want to use history in the first place). I don’t think it’s just me, either. The same problem can be seen with the demo linked from this post about the history API.

If there are any JavaScript experts out there who can point out my obvious incompetence here, that would be great. Otherwise I guess I’ll have to wait for updates to WebKit to hopefully fix the issue before I can start applying this technique with confidence.

289 comments:

  1. Sounds like a browser bug. Maybe history.js would be of some help or at least interesting.

    ReplyDelete
  2. I couldn't see the issue you mentioned in when trying your site in chrome, when going back after leaving the site I get taken back to the page with the sort order as it was.

    Assuming that your server is also capable of rendering the table, for those browsers that don't support pushState, the server should probably handle those kind of requests, and once the page is loaded the JavaScript can take over.

    I have a nice library that wraps pushState to provide this kind of routing, Davis.js it might be worth a look if you end up using this technique some more.

    ReplyDelete
  3. That bug and others are fixed in the new History.js by balupton. https://github.com/balupton/history.js

    ReplyDelete
  4. I encountered the same problem. Clicking a link to go to another page then hitting Back causes the browser to display the json response rather than the previous page.

    History.js doesn't fix it. I switched to it hoping it would, but nothing changed. The Cache-control header fixed it, though. I had to use a value of "no-cache no-store" because just using "no-cache" didn't help. This is on Firefox 6.0.1.

    ReplyDelete
  5. I'm so glad you posted this. I thought I was just doing something stupid! And I agree with Waleed, history.js does not fix this. I'll try the caching bit.

    ReplyDelete
  6. I have this exact same problem... Did you ever figure out a "real" solution? The cache-control fix is far from ideal, but I'll give it a shot. Thanks.

    ReplyDelete
  7. This comment has been removed by a blog administrator.

    ReplyDelete
  8. I use history.js and I had the same problem and afaik there is no solution until browsers themselves process pushState history differently. Like you, I don't like suppressing page caching, so I decided to render full pages via ajax and pull out the necessary information. Luckily my framework and site layout made this simple. Yes, it make the ajax request larger, but at least they're cached in their fullness. For now, this is the best solution for me.

    ReplyDelete
  9. I'm glad I found this post.

    It looks like the Chrome devs don't want to fix it: http://code.google.com/p/chromium/issues/detail?id=94369

    They say that a single given url shouldn't return two different things (html in one case and json in another).

    That's strange though, because Rails (which I'm using) heavily encourages the use of the Accepts header to determine whether a given url should return html, json, js, xml, etc.

    Add me to the list of people waiting for a real solution or the browsers makers to do something about it.

    ReplyDelete
  10. I found found that adding a query param to the url (e.g. "ajax=1"), when called via ajax, solved the problem. This way, the browser does not mix it up and page fragments loaded by Ajax still get cached.

    ReplyDelete
  11. This post is very useful and informative, I really appreciate it.
    pasang iklan gratis

    ReplyDelete
  12. Thank you for such a sweet tutorial - all this time later, I've found it and love the end result. I appreciate the time you spent sharing your skills.
    Signature:
    i like play games happy wheels online and play happy wheels 2 games and zombie tsunami , retrica , retrica camera, happy wheels game , agario

    ReplyDelete
  13. I just wanted to thank you for sharing this wonderful baking. The effects generated by Javascript can be downloaded much faster than some other technologies such as Flash and Java applets. In fact, unless you write a JavaScript application is too large, and almost all common JavaScript code does not significantly increase the download time of web pages. The duug nor download the plug-in components before they can view the content they have done Javascript as with Flash, they just need a browser with Javascript support - and of course, the majority of current browsers support Javascript.!
    G9G , Dora , Kizi new , Huz 2 , Kizi hot , Friv 4 , 85 Play , 4223 Games , 85 Games

    ReplyDelete
  14. It is a great article. You will surely like this also because it is a great stufff
    Geometry Dash 2.0 |Dr Driving | Trollface Quest 2 | Square Quick

    ReplyDelete
  15. I was reading some articles for reference, I feel your article is good. I will take a few main sections to be included in my article. Hopefully you'll agree. Thank you. baixar facebook , baixar facebook , descargar facebook , descargar whatsapp gratis , descargar mobogenie gratis , mobogenie , messenger whatsapp

    ReplyDelete
  16. I like this article. You have raised the issues clearly and resolve it. Thank you for sharing your opinions with people. descargar facebook , descargar facebook , baixar whatsapp , descargar whatsapp , baixar whatsapp plus , mobogenie , mobogenie

    ReplyDelete
  17. It is a great article. You will surely like this also because it is a great stufff
    Descargar Geometry Dash |Descargar Geometry Dash 2.0 |Geometry Dash|Geometry Dash 2.0 |

    ReplyDelete
  18. Welcome, your blog is great. I have read many of your articles. It's very interesting and meaningful, it helps me have more knowledge about life.
    Signature:
    messenger indir | messenger download |messenger indir | messenger | messenger indir | download messenger | messenger indir | messenger indir

    ReplyDelete
  19. Great stuff. This is really a fascinating blog, lots of stuff that I can Get into. One thing I just want to say is that your Blog is so perfect!
    Swords And Souls is a fighting game developed by Soul game studio. You play as a warrior whom you have to train into a hero in a Roman ancient town. And, subway surfers is an "endless running" mobile game co-developed by Kiloo, a private company based in Denmark and SYBO Games. It is available on Android, iOS, Kindle, and Windows Phone platforms. Play goodgame big farm games online for free, the best online farm games by Goodgame. You can also eject extra mass and split into multiple parts to outplay smaller cells. The end, ninjago games is a popular ninja games developed from Lego Ninjago brand. The game attracted the interest of millions kids with a gripping storyline and new sections are constantly being updated. To play agario click here to move the cell using the mouse, to divide into equal cells. If you collide with a smaller cell, you will absorb it and grow. Good lucky!

    ReplyDelete
  20. Great! Very interesting your post, I'm glad of your information so that I can be informed.
    car games | car parking games | truck games | racing games

    ReplyDelete
  21. This comment has been removed by the author.

    ReplyDelete
  22. Very good this blog.

    Now you can play the best unblocked games: https://sites.google.com/site/unblockedgamesfree4all

    ReplyDelete
  23. Thanks a lot for your posting. Pls visit our site for playing this Super Smash Flash 2 Game

    ReplyDelete
  24. This is a great article. Your information is very rich.
    friv 3
    yepi
    Kizi
    friv
    yoob
    abcya 2

    ReplyDelete
  25. The article you provided very useful,
    Hopefully I get to read your other articles

    T H A N K S F O R S H A R I N G

    ReplyDelete
  26. Hello! Would you mind if I share your blog
    with my facebook group? There’s a lot of people that I think would really enjoy your content.
    Please let me know...
    IDM 6.5 Build 5 kegan
    Trend Micro Antivirus
    Windows 7 Product Key
    Adobe Illustrator CC 2016 Crack

    ReplyDelete
  27. Thanks for sharing, nice blog. This is a great article. It gave me a lot of useful information. plese visit me
    WinAVI Video Converter 11.5 Keygen
    Trend Micro Antivirus
    Movie Converter 7 Keygen
    Neuratron Audio Score Ultimate Keygen

    ReplyDelete
  28. Thanks for sharing, nice blog. This is a great article. It gave me a lot of useful information. plese visit me
    WinAVI Video Converter 11.5 Keygen
    Trend Micro Antivirus
    Movie Converter 7 Keygen
    Neuratron Audio Score Ultimate Keygen

    ReplyDelete
  29. Thanks for sharing, nice blog. This is a great article. It gave me a lot of useful information. plese visit me
    WinAVI Video Converter 11.5 Keygen
    Trend Micro Antivirus
    Movie Converter 7 Keygen
    Neuratron Audio Score Ultimate Keygen

    ReplyDelete
  30. Busy life circumstances than the current world history.
    Mario | Friv | Doraemon Games | Kizi | Yoob

    ReplyDelete
  31. This comment has been removed by the author.

    ReplyDelete
  32. I really liked as a part of the article. With a nice and interesting topics
    Friv 4
    yepi100
    starfall
    yoob
    friv 4
    friv 100
    friv

    ReplyDelete
  33. Very helpful advice in this particular post! It’s the little changes that make the largest changes. Thanks for sharing!
    super smash flash 2 - atari breakout

    ReplyDelete
  34. I would jump on a plane this instant - what amazing places!
    http://sexyword333.blogspot.com/

    ReplyDelete
  35. I would jump on a plane this instant - what amazing places!
    http://sexyword333.blogspot.com/>

    ReplyDelete
  36. First of all i am saying that i like your post very much.I am really impressed by the way in which you presented the content and also the structure of the post. Hope you can gave us more posts like this and i really appreciate your hardwork.

    happy new year messages and pics
    Christmas 2016 greetings and pics
    onam 2016 greetings and wishes
    Click here for more images
    Whatsapp status wishes and quotes
    winrar password remover

    ReplyDelete
  37. You wrote a enjoyed and lots of good things around article..

    Most of peoples are looking for the Sarkari Naukri and one of the major question is How to find it.? Maharashtra government recently launched the one protal named Maharojgar and they are helping Studnets for searching there jobs. They are giving Employment Cards to everyone. Just do the Employment Card Online Registration on official website.

    ReplyDelete
  38. To flee war, Kizi | Yoob to protect the lives of themselves and their families, and must live with the rhythm of society, sometimes makes people feel comfortable smell. Be strong in the harshness of life, you will succeed. Friv | Doraemon Games

    ReplyDelete
  39. This is a great article. It gave me a lot of useful information. thank you very much. Can you play more games at :
    red ball 3 | ninjago games | swords and souls game | strikeforce kitty 2

    ReplyDelete
  40. You need to have time to take care of the active. It in fact was a amusement account it. Look advanced to far added agreeable from you.

    minecraft

    ReplyDelete
  41. I was working and suddenly I visits your site frequently and recommended it to me to read also Y8 | Juegos de Twizl | Friv 2019 | Yoob

    ReplyDelete
  42. Facebook has become a part of my life, not only helped me to connect with you nè but also where I can share every moment in life. I really like the convenience that it brings
    [url="https://plus.google.com/u/0/104108011489995969586/"]facebook baixar[/url] , [url="https://twitter.com/facebookgratis5"]facebook baixar[/url] , [url="https://baixarfacebookgratis.wordpress.com/"]facebook baixar[/url] , [url="https://sites.google.com/site/baixarfacebookgratis01/"]facebook baixar[/url] , [url="https://www.pinterest.com/facebookgratis5/"]facebook baixar[/url] , [url="https://www.flickr.com/photos/baixarfacebookgratis/"]facebook baixar[/url] , [url="http://imgfave.com/baixarfacebookgratis"]facebook baixar[/url] , [url="http://baixarfacebookgratis.deviantart.com/"]facebook baixar[/url] , [url="http://baixarwhatsappgratis02.weebly.com/"]facebook baixar[/url] , [url="https://myspace.com/baixarfacebookgratis"]facebook baixar[/url]

    ReplyDelete
  43. This comment has been removed by the author.

    ReplyDelete
  44. This comment has been removed by the author.

    ReplyDelete
  45. http://happyvalentinesday2017cardsimages.com
    http://happyeaster2017imageswishes.com
    http://iphone8samsunggalaxys8.com
    http://cbse10th12thresult2017.in
    http://wwetlc2016results.org
    http://happyquoteswishesimages.com
    http://isscresult2017.in

    http://igate2017result.in
    http://fastandfurious8wolverine3review.com
    http://lgg6samsunggalaxynote7.com
    http://happy2016wishesimages2017.net
    http://happynewyear2015i.com/2016/08/16/happy-new-year-2017-wishes-quotes-images-cards-greetings-status-shayari.html

    http://2017wwewrestlemania33results.org
    http://wweroyalrumble2017results.org
    http://happynewyear2017valentinesday.com
    http://2017happynewyearwishesimages.org
    http://chinesenewyear2017wishesgreetings.com
    http://birthdaywishesforsisterson.com
    http://lovebreakupmovingonquotes.com

    ReplyDelete
  46. You need to have time to take care of the active. It in fact was a amusement account it. Look advanced to far added agreeable from you.

    banana kong , banana kong , banana kong , banana kong , banana kong , banana kong , banana kong , banana kong , banana kong , banana kong

    ReplyDelete
  47. I was noticing from many days that your blog is helping too many readers as your articles are easy to understand and helpful to us.
    I think you should explore the articles on your website, You should also cover different different categories for articles as you writes awesome. Thanks for sharing this great article with us.

    Happy New Year 2017 Quotes

    New Year 2017 Quotes

    Happy Birthday Wishes Quotes

    Valentine's Day 2017 Quotes

    ReplyDelete


  48. I really appreciate the efforts you put into reviewing these useful resources.

    --------------------------
    Also checkout our happy new year messages and pics new collections.

    ReplyDelete
  49. In the afternoon I go play ball, took off her jacket to give you that, you stood on the edge of the field, taking clothes, naturally folded it neatly and then hugged to his chest, then smiled stood there cheering for me
    run 2 , run 2 game , play run 2 , run 2 unblocked , run

    ReplyDelete
  50. A bright smile and a greeting no attempt will be good impression, also will cause him to have feelings for your area. Smile more important than anything else, a smile will feel like the world is joy everywhere.
    geometry dash 2.0 , geometry dash , geometry dash 2.0 apk , geometry dash apk , geometry dash online

    ReplyDelete
  51. Diwali, or Dipawali, is india’s biggest and most important holiday of the year. The festival gets its name from the row (avali)of clay lamps (deepa) that Indians light outside their homes to symbolize the inner light that protects us from spiritual darkness. This festival is as important to Hindus as the Christmas holiday is to Christians.



    Diwali 2016 Wallpaper HD

    ReplyDelete
  52. http://www.mnartists.org/article/nemaa-artist-series-reconciling-hyphenated-identity#comment-39473

    ReplyDelete
  53. http://www.happynewyr2017.net/2016/10/inspirational-happy-new-year-2017-quotes.html

    ReplyDelete
  54. This comment has been removed by the author.

    ReplyDelete
  55. This comment has been removed by the author.

    ReplyDelete
  56. This comment has been removed by the author.

    ReplyDelete
  57. This comment has been removed by the author.

    ReplyDelete
  58. This comment has been removed by the author.

    ReplyDelete
  59. You wrote a good post and very love to read it...

    Recently UP Government declared on Free Smartphone Scheme for UP people named Samajwadi Smartphone Yojana. This Scheme was started on 10th October 2016.
    Looking for the Maharashtra Police Bharti 2017 then yet not official notification delcared. Log on to official website to get more information about the Maharashtra Police Recruitment 2017

    MSBTE Result Winter 2016 will be declared in the month of December 2016 or in January 2016. MSBTE Result declare on Maharashtra State Board of Technical Education website.

    ReplyDelete
  60. On the event of New Year, some of the lovers plan very big in order to surprise their girlfriend and loved ones by arranging best new year wallpaper xmas wishes new year wallpaper for desktop merry christmas wishes pics jingle bell 2016 new year pictures for fb covers candlelight dinners, parties and much more. Love is a blend of all sorts of emotions associated with a sense of high warmth and affection

    ReplyDelete
  61. Thanks for sharing. Iam finding this..We are sharing with you men’s haircut styles 2017 with the latest trends…

    ReplyDelete
  62. This comment has been removed by the author.

    ReplyDelete
  63. I love the wonderful and powerful functionality for the JavaScript language. Sincerely speaking I have never found any other site yet having such content. This content makes this blog to be unique to me. I have loved been part of this forum. If you about to join a scholarly institution, you can request for professional Help with Writing Admission Essays so that you can obtain a professionally written admission essay.

    ReplyDelete

  64. happy new year 2017 video download



    happy new year 2017 hd wallpaper


    happy new year 2017
    happy new year 2017 wallpaper
    happy new year 2017 clipart
    happy new year 2017 countdown

    ReplyDelete
  65. Great work I am very impressed your work keep it up dear and sharing a more amazing topic thank again Winzip Pro 21 Visual Studio Crack
    Eset Smart Security 10 Crack Lumion 7 pro
    Rise Of The Tomb Raider PC Torrent

    ReplyDelete
  66. It’s really a nice and helpful piece of info. I’m glad that you just shared this helpful info with us. Please keep us informed like this. Thanks for sharing
    kingo root android , kingo root , kingo root apk

    ReplyDelete
  67. This comment has been removed by the author.

    ReplyDelete
  68. Jobs Chat is one of the biggest Indian Job Site so here you will getMadhyapradesh psu 2017so

    ReplyDelete
  69. to know how you can get to know the details of using bitmoji on snapchat easily then check this simple guide good.

    ReplyDelete
  70. E-mail with many attractive features and convenience are the choice of most people around the world open. And I want to share to everyone a free webmail services extremely great.
    outlook entrar , entrar no outlook , entrar outlook , outlook entrar

    ReplyDelete
  71. This is a great inspiring article. I am pretty much pleased with your good work.You put really very helpful information. Keep it up. Keep blogging. Looking to reading your next post. binary signals reviews
    Cute Proposal Images
    Happy Hug Day Messages
    Happy Chocolate Day 2017 Images

    ReplyDelete
  72. you can easily download and install Whatsapp messenger for PC from this simple guide for pcs home this is very helpful. nice.

    ReplyDelete
  73. there is no such app comparing to SHAREit PC for fast sharing with very useful features http://www.shareitforpcguide.com very nice post to know more about this.

    ReplyDelete
  74. I have heard about ad-hockery before, but i never got to fully understand anything about it. Your blog has been of great help, i can say that i am fully and maximally informed. It would be a very good thing to see more of this as its very interesting and helpful. Professional script editor for hire. Visit the link and get to work with experts.

    ReplyDelete
  75. When i started reading this page, i wasn't sure of the information that was in it. It is after reading that i realized that you are offering data that can be very helpful about java-script history object. Optimized web articles writers You have done a credible job that leaves me very informed. Thank you and kindly keep the great work going.

    ReplyDelete
  76. Already a long time ago I'm not heartbroken. Sounds odds, right? As one might expect once again lost love in his life that count, whether you've gone through many painful setbacks, and see how many people had been longing glance of his life.
    facebook entrar , entrar no facebook , entrar facebook , entrar facebook direto

    ReplyDelete
  77. This comment has been removed by the author.

    ReplyDelete
  78. This comment has been removed by the author.

    ReplyDelete
  79. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
    Free Mp3 Download

    ReplyDelete
  80. This comment has been removed by the author.

    ReplyDelete
  81. This comment has been removed by the author.

    ReplyDelete
  82. I absolutely enjoyed reading through this post. I found it as an informative and captivating post. I look forward to reading some more posts from you. Thank you for sharing. The Covenant

    ReplyDelete
  83. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site. Hindi Songs Lyrics Hindi Movie Songs Lyrics

    ReplyDelete



  84. Life becomes more interesting and wonderful when you share your memorable moments with friends and family through unique photographs. You can create your own unique style impressed with image editing software. And after hours of work stress you can also

    Square Quick
    Square Quick
    Square Quick
    Square Quick
    Square Quick

    ReplyDelete
  85. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
    IPL 2017
    IPL Auctions 2017
    IPL 2017 Schedule

    ReplyDelete
  86. very useful and informative, I really appreciate it. good job awesome
    Punjabi Songs

    ReplyDelete
  87. ICC Champions trophy 2017 which would take place in England this year. champion trophy 2017 schedule champion trophy live score and bally ball commentary.

    ReplyDelete
  88. ICC Champions trophy 2017 which would take place in England this year. champion trophy 2017 schedule
    Cahmpion trophy live streaming champion trophy live score and bally ball commentary.

    ReplyDelete
  89. This comment has been removed by the author.

    ReplyDelete
  90. This comment has been removed by the author.

    ReplyDelete
  91. Nice Post....
    Thanks for Sharing...
    Songs.PK

    ReplyDelete
  92. I was doing online research to find content that I will use while writing my Population Genetics Lab Report before I was directed by the search results on this page and I have found some entertaining information. I will bookmark this site and visit it occasionally to read more interesting articles.

    ReplyDelete
  93. The smashing combination of Meet Bros, Anjjan and Khushboo Grewal’s voices has made it a cooling sensation. So girls with full post it is time to put that sweet pink gloss on your lips, get your cars full post started up and play Pink Lips animated movies a little louder and full post clear version of this animated films.

    ReplyDelete
  94. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site. Motivational Quotes Inspirational Quotes

    ReplyDelete
  95. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.

    love Quotes
    friendship Quotes

    ReplyDelete
  96. This comment has been removed by the author.

    ReplyDelete
  97. This comment has been removed by the author.

    ReplyDelete