Answers for "window.history"

4

javascript window.history.pushState

window.history.pushState("http://example.ca", "Sample Title", "/example/path.html");
Posted by: Guest on June-25-2020
0

js window history

// go back:
window.history.back()
// go forward:
window.history.forward()
// go to specific point:
window.history.go(-2) // go back 2 pages, 0 is current page
window.history.go(0) // refreshes current page
window.history.go() // refreshes current page
// get number of pages in history
let numberOfEntries = window.history.length
Posted by: Guest on March-06-2021
0

window.history

var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?newParameter=1';
window.history.pushState({ path: newurl }, '', newurl);
Posted by: Guest on May-16-2021
0

JavaScript Window History

<html>
<head>
<script>
function goBack() {
  window.history.back()
}
</script>
</head>
<body>

<input type="button" value="Back" onclick="goBack()">

</body>
</html>
Posted by: Guest on February-27-2021

Code answers related to "window.history"

Browse Popular Code Answers by Language