JQuery: Change URL param without reloading? -


i have question, possible change url via jquery under following conditions:

  • same url load on browser , on reloads
  • page doesn't reload when change parameter

if wanna prevent page reloading you'll have use hash "#"

and if wanna change url try that:

jquery.param.querystring(window.location.href, 'valuea=321&valueb=123'); 

this return following url:

http://bla.com/test.html?valuea=321&valueb=123


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -