Not sure if this has been mentioned but a way to auto submit the form on page load would be fantastic.
I've got a script that automatically submits the form after 1 millisecond of time on the page. All the fields are auto populated with data so no user in put is needed, but we need to get this information of the people who land on this page.
[js]
<script type="text/javascript">
setTimeout("SubmitThingy()",1);
function SubmitThingy() {
document.FormThingy.submit();
}
</script>
I think it might be able to work with gravity forms as well if I could get the form renamed.