I need to make a form send both POST and GET requests (due to some bugs in IE and iframes), how can you do so?
The data being sent is nothing mega secure so it doesn
Not sure what bug you're trying to get around but you can use jQuery to easily modify the form's action to contain the posted values:
script:
function setAction() { $("#myform").attr("action", "/path/to/script/?" + $("#myform").serialize()); }
html: