At this moment we construct our search query in our website with java script. We have an input box for keyword and another input box for name and so on. If a user enters keyword: test the query looks like:
http://oursite.com/Search?keyword=test
if they enter keyword: test and name: john the string looks like:
http://oursite.com/Search?keyword=test&name=john
So the functionality is easy, take information from input boxed chain it, and then pass it to the window.location.
ok. now we want to do it with jquery, any ideas on how to start or plugins that will do this.
In case you are wondering, we want to do this to increase maintainability of our code and decrease dependency in one developer.