Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

window.history.pushstate typescript

const url = new URL(window.location.href);
url.searchParams.set("key", "value");
const href = url.toString();
window.history.pushState({}, '', href);
 
PREVIOUS NEXT
Tagged: #typescript
ADD COMMENT
Topic
Name
9+5 =