Context
I have a working standard form, with method POST, with a standard submit button, and I would like to leave this in this way.
<form id="myform" method="post"... >
...
<input type="submit .../>
</form>
However in some circumstances, I would like to programmatically send the form data to server side and re-render the form. Sending the form data with GET would be great this case.
Question
How can I achieve that document.myform.submit(); use the GET method, instead the POST what is declared in the <form ...> element?