Is there any way to easily convert a GET form to a POST form? I could use post data=, but that would mean having to extract a load of data from the page, and I was just wondering if there was a quick way, eg. modify submit type=POST
Hi As far as I know, you can't do this. The method (GET or POST) is defined by the forms method attribute, and you have to submit forms through that specified method.
Well this form in question is set up as GET but is actually submitted via ajax POST. Poor coding by the web designer and annoying for me to script in SER
Comments
As far as I know, you can't do this. The method (GET or POST) is defined by the forms method attribute, and you have to submit forms through that specified method.