Answers for "how to check url without reloading page"

8

javascript modify url without reloading page

window.history.pushState('', 'New Page Title', '/new-url.php');
Posted by: Guest on July-22-2019
0

change URL without reloading the Page

function processAjaxData(response, urlPath){
     document.getElementById("content").innerHTML = response.html;
     document.title = response.pageTitle;
     window.history.pushState({"html":response.html,"pageTitle":response.pageTitle},"", urlPath);
 }
Posted by: Guest on July-07-2021

Code answers related to "how to check url without reloading page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language