Hello,
I would like to replace the value of a querystring parameter with javascript. Something like:
URL: http://localhost/Europe.asp?group=Europe®ion=Italy&pview=25&page=1
I want to change the value of pview. I think I just need some Regular Expression to match the pview=? (any number)
var qs = new String(window.location);
alert(qs.replace(someregexp,'pview='+newval));
Thanks,
vc