[jQuery] blank form fields in GET request
Hi,
I have a form with lot of input fields - most of them are of type
'select'. In most cases only a few fields are changed. The others
still show the default value.
When submitting the form I get a huge url which basically looks like
this:
http://home/myscript?a=&b=&c=newValue&d=&e=
I would like to have it simplified to
http://home/myscript?c=newValue
I tried already by removing the empty fields from the form but I don't
like to see them disappear when submitting the form.
Is there an easy way to remove blank form fields from an GET request?
Benny