T
Tomas
I have this simple function:
<SCRIPT LANGUAGE="JavaScript"><!--
function paper(){
document.writeln(document.FrontPage_Form1.paper_brand);
}
//--></SCRIPT>
tha is called by:
<input name="paper_brand" size="20" onBlur="paper()" style="text-align:
center; float:left" readonly>
The idea is to extract the entry in "paper_brand" and turn it into a header
further down on the page. If someone enters a certain paper type into the
textbox there will be a section that discusses this particular paper.
The function ddoes extract the paper entry, but writes it to a new page, not
the current one where the paper_brand field is.
???
Best,
Tomas
<SCRIPT LANGUAGE="JavaScript"><!--
function paper(){
document.writeln(document.FrontPage_Form1.paper_brand);
}
//--></SCRIPT>
tha is called by:
<input name="paper_brand" size="20" onBlur="paper()" style="text-align:
center; float:left" readonly>
The idea is to extract the entry in "paper_brand" and turn it into a header
further down on the page. If someone enters a certain paper type into the
textbox there will be a section that discusses this particular paper.
The function ddoes extract the paper entry, but writes it to a new page, not
the current one where the paper_brand field is.
???
Best,
Tomas