post without form fields

wxdqz

New Member
Instead of making a function that fetches the values of the form fields in a HTML-form, I would like to "fake" an entire form, thus not having to create the actual form.

Is there some way you can create a form with javascript and post those values to a page?

<Pseudo-code>
function postFakeForm() {
var formtarget = "mypage.htm";
var formfieldName = "Michelle";

PostForm...

}

<a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:postFakeForm();">Post to the next page</a>
</Pseudo-code>
 
Back
Top