What does this mean?
@URLOpen(“javascript:SubmitForm( this.document.forms[1] )”)
Thanks in Advance
What does this mean?
@URLOpen(“javascript:SubmitForm( this.document.forms[1] )”)
Thanks in Advance
Subject: Javascript
javascript: is a pseudo-URL protocol that allows you to run a javascript function. document.forms[1] means that a second HTML form has been created on the form using passthrough HTML (you should see …<form name=… somewhere on the form). SubmitForm() is a function, probably in the JS Header of the form. The chances are pretty good that the function does some validation before submitting the form. Your action would translate on the web to:
That means “call the SubmitForm function against the passthru form”.