qs
qs copied to clipboard
There should be a way to set the query string
While qs.get()
gets the current query string,
a qs.set()
method could set the query string.
It may work something like
qs.set({ post: '1234' });
or
qs.set('post', '1234')
or both.