SatishPutcha
Programmer
Hello Everybody
I am trying to create a querystring in Javascript that I append to my form action.
I want it like
But why is it showing like this in the address bar
My javascript for the form submit is:
Thanks and Regards
Satish Kumar
I am trying to create a querystring in Javascript that I append to my form action.
I want it like
Code:
searchterm=abel&Submit=Go&searchtype=property&extra=quickSearch
Code:
searchterm%3Dabel%26Submit%3DGo%26searchtype%3Dproperty&extra=quickSearch
My javascript for the form submit is:
Code:
valquerystring = "searchterm%3Dabel%26Submit%3DGo%26searchtype%3Dproperty&extra=quickSearch";
frmbookmark.action = "search.php?" + valquerystring;
Thanks and Regards
Satish Kumar