Is there any way I can get the new page's url when the window.popstate
is fired?
window.onpopstate(function (){
newPageUrl = //get the new page's URL
})
Is there any way I can get the new page's url when the window.popstate
is fired?
window.onpopstate(function (){
newPageUrl = //get the new page's URL
})
Use this
window.onpopstate = function (){
newPageUrl = location.href;
}
© 2022 - 2024 — McMap. All rights reserved.
location.href
work? – Feria