I have this URL:
site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc
what I need is to be able to
If you want to change the url in address bar:
const search = new URLSearchParams(location.search); search.set('rows', 10); location.search = search.toString();
Note, changing location.search reloads the page.
location.search