Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

history.pushState() change query values

If I have a link that is being changed with the function history.pushState({}, "", link); where my link is for example page.php?value=1&value2=2 Is there a way to just change the value2 with pushState() function instead of changing the whole link?

like image 205
Grigor Avatar asked May 02 '12 20:05

Grigor


2 Answers

If what you're trying to do is change the URL without adding an additional entry to the history object, you might try replaceState.

history.replaceState({value: 1, value2: X}, "title", "page.php");
like image 191
devstruck Avatar answered Nov 02 '22 13:11

devstruck


No, because the query string is part of the URL. If you don't truly need to pass those values for the purposes of the server, you can include them in the history's state object itself, and then you can change just the state object with pushState(). For example:

history.pushState({value: 1, value2: 2}, "Title", 'page.php');
history.pushState({value: 1, value2: 'new value'}, "Title");
like image 20
Chris Pratt Avatar answered Nov 02 '22 13:11

Chris Pratt