The current url
http://www.example.com/search/?accommodation=1&venue=&seating=2&min=&max=&feature_list=7|8|9
Is there a way in jquery how can i grab my url which is this one above.... and the feature_list parameter change its value (7|8|9) to something like 8|9|10 ?
I dont need to change the URL header, just I want to link this output to an HREF..
This is what I want to achieve from the current URL.
<a href="http://www.example.com/search/?accommodation=1&venue=&seating=2&min=&max=&feature_list=8|9|10">Link</a>
I am using this as a filtering system...
This is a dynamic url so 7|8|9 changes all the time...