I have a form that I am doing a METHOD="GET" on, so I want the form to make a HTTP request with the form fields as querystring values.
I have some hidden form fields, and when I click a button I wanted the form to be posted to:
/some/path?a=1&b=2
But because the form fields were hidden they don't get included.
I then changed the input type to text, but did a display:none on each one, and the same thing happens.
If I change the action URL to include querystring values, those also get ignored.
How can I get this too work? I want clicking a button to include the querystring values in the form http GET request.