For all those who have the same issue as I did wanting a milti page form with redirect. Here is what I did to finally get my wp site widget-able form.
Please note: '/testing/' is where you put your url for your redirect ( since I am using wordpress the url is not a static .php or .html)
and if you wish to make all of your forms on different pages.
you would add this to all pages of your multi page form and change the url accordingly.
also you will want your form name set to your data fields these are mine. id="formElem" name="formElem"
<script type="text/javascript">
function submitForm() {
var targetURL = '/testing/';
document.aformiam.action = targetURL;
return true;
}
</script>
<form id="formElem" name="formElem" action="/testing/" method="post">
<!-- Your form goes between here -->
<!-- end form -->
<button id="btn_room_search" name="btn_room_search" type="submit" style="float:left" value="Send Form" onClick="return submitForm();" />Search</button>
Thanks again for viewing my problem, But I fixed it first. JC