Reputation: 854
Can you advice me how to remove get parameter (input text) without removing the value of the input or disabling it? Is this possible at all?
Upvotes: 2
Views: 4932
Reputation: 2256
You can place the text field outside the form
OR
you could use Javascript
and remove that particular parameter before sending the request.
The javascript
method will give you more flexibility.
Upvotes: 0
Reputation: 23095
The easiest way would be to switch to the POST method when submitting your form. This way the parameters aren't passed by the Url anymore but rather in the HTTP header which is not visible.
Upvotes: 0