Tutorial by Examples

Syntax : history.replaceState(data, title [, url ]) This method modifies the current history entry instead of creating a new one. Mainly used when we want to update URL of the current history entry. window.history.replaceState("http://example.ca", "Sample Title", "/exam...
Syntax : history.pushState(state object, title, url) This method allows to ADD histories entries. For more reference, Please have a look on this document : pushState() method Example : window.history.pushState("http://example.ca", "Sample Title", "/example/path.html&qu...
go() method The go() method loads a specific URL from the history list. The parameter can either be a number which goes to the URL within the specific position (-1 goes back one page, 1 goes forward one page), or a string. The string must be a partial or full URL, and the function will go to the f...

Page 1 of 1