Is there an alternative to history.pushState that allows going forward and backward in the browser?
<script>
function update_url(url) {
history.pushState(null, null, url);
}
update_url('http://localhost/test41.php');
</script>
Is there an alternative to history.pushState that allows going forward and backward in the browser?
<script>
function update_url(url) {
history.pushState(null, null, url);
}
update_url('http://localhost/test41.php');
</script>
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.