window.history.pushState('', 'New Page Title', '/new-url.php');
window.history.replaceState({}, '','/dashboard');
window.history.pushState('page2', 'Title', '/page2.php');
function processAjaxData(response, urlPath){
document.getElementById("content").innerHTML = response.html;
document.title = response.pageTitle;
window.history.pushState({"html":response.html,"pageTitle":response.pageTitle},"", urlPath);
}