Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

//Netscape's JS Console shows the m

Status
Not open for further replies.

macmonteiro

Programmer
Oct 24, 2002
35
BR
//Netscape's JS Console shows the message:
//"Error: form is not defined
Source File: Line: 26"
//when I run this code::
----------------------------------------
<script language=&quot;JavaScript&quot;>
function envio(form) {
verifica();
var url=&quot;opt_bar.php?pro_item=E&pma_marc=&quot;+form.pma_marc.value+&quot;&pma_reg=&quot;+form.pma_reg.value+&quot;&pem_form=&quot;+form.pem_form.value+&quot;&pem_numr=&quot;+form.pem_numr.value+&quot;&pem_tecn=&quot;+form.pem_tecn.value+&quot;&pem_emb=&quot;+form.pem_emb.value +&quot;&pem_conc=&quot;+form.pem_conc.value +&quot;&pem_cont=&quot;+form.pem_cont.value+&quot;&pem_cust=&quot;+form.pem_cust.value+&quot;&pat_prin=&quot;+form.pat_prin.value+&quot;&pat_class=&quot;+form.pat_class.value+&quot;&pat_nqui=&quot;+form.pat_nqui.value+&quot;&pat_ctox=&quot;+form.pat_ctox.value+&quot;&pat_camb=&quot;+form.pat_camb.value+&quot;&pat_infl=&quot;+form.pat_infl.value+&quot;&pat_corr=&quot;+form.pat_corr.value+&quot;&pat_modo=&quot;+form.pat_modo.value+&quot;&pat_comp=&quot;+form.pat_comp.value
win = window.open (url,&quot;novaJ&quot;,&quot;height=140, width=310&quot;)
win.moveTo(250,250);
win.creator = self;
}
</script>
---------------------------------------
// ¿¿ WHY ??
// And what can I do about it?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top