crop_rotate
Run
<html> <head> </head> <body> <h1 id="data">JavaScript SPA Single page application Syntax</h1> <input type="button" value="Change URL" id="myInp"> <script> let myInp = document.getElementById("myInp"); let data = document.getElementById('data'); const state = { 'pageID': 1, 'userID': 5 ,'pageTitle':'CloseTag'} myInp.addEventListener('click',()=>{ history.pushState(state,'') data.innerText = "H1 changed to : " + history.state.pageTitle window.history.pushState({urlPath:'/tutorial/javascript/javascript-spa-single-page-application/javascript-spa-single-page-application-syntax'},"",'/tutorials') }) </script> </body> </html>
JavaScript SPA Single page application Syntax