Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to trigger change when using the back button with history.pushstate and popstate?

I'm pretty much a novice when it comes to js so I'm sorry if I'm missing something really simple.

Basically, I've done some research into using the history.pustate and popstate and I've made it so a query string is added to the end of the url (?v=images) or (?v=profile)...(v meaning 'view') by using this:

var url = "?v=profile" var stateObj = { path: url }; history.pushState(stateObj, "page 2", url); 

I want to make it so I can load content into a div but without reloading the page which I have done using the .load() function.

I then used this code:

$(window).bind('popstate', function(event) {     var state = event.originalEvent.state; 

in $(document).ready() section and later tried within just <script> tags and neither worked.

I don't know how to make it so the content changes when I use the back button or at least makes it so I can trigger my own function to do so; and I'm assuming it has something to do with the state object?! I just can't seem to find anything online that explains the process clearly.

If someone could help me out it would be amazing and thank you in advance to anyone who does!

like image 706
Rwd Avatar asked Nov 07 '11 15:11

Rwd


People also ask

Does history back trigger Popstate?

The popstate event will be triggered by doing a browser action such as a click on the back or forward button (or calling history. back() or history.

Which event is fired when the history of the browser Window changes?

HTML DOM PopStateEvent Events that occur when the window's history changes.

Does history pushState reload page?

But this function is not intended to reload the browser. All the function does, is to add (push) a new "state" onto the browser history, so that in future, the user will be able to return to this state that the web-page is now in.


1 Answers

The popstate only contains a state when there is one.

When it goes like this:

  1. initial page loaded
  2. new page loaded, with state added via pushState
  3. back button pressed

then there is no state, because the initial page was loaded regularly, not with pushState. As a result, the onpopstate event is fired with a state of null. So when it is null, it means the original page should be loaded.

You could implement it such that history.pushState will be called consistently and you only need to provide a state change function like this: Click here for jsFiddle link

function change(state) {     if(state === null) { // initial page         $("div").text("Original");     } else { // page added with pushState         $("div").text(state.url);     } }  $(window).on("popstate", function(e) {     change(e.originalEvent.state); });  $("a").click(function(e) {     e.preventDefault();     history.pushState({ url: "/page2" }, "/page2", "page 2"); });  (function(original) { // overwrite history.pushState so that it also calls                       // the change function when called     history.pushState = function(state) {         change(state);         return original.apply(this, arguments);     }; })(history.pushState); 
like image 135
pimvdb Avatar answered Sep 24 '22 07:09

pimvdb