Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

update url parameters and create history entry

// Construct URLSearchParams object instance from current URL querystring.
var queryParams = new URLSearchParams(window.location.search); 
// Set new or modify existing parameter value.
queryParams.set("myParam", "myValue"); 
// Replace current querystring with the new one.
history.replaceState(null, null, `?${queryParams.toString()}`);
// Or create new history entry with push state
history.pushState(null,null, `?${queryParams.toString()}`);
Source by zgadzaj.com #
 
PREVIOUS NEXT
Tagged: #update #url #parameters #create #history #entry
ADD COMMENT
Topic
Name
5+9 =