I’ll be the first to admit that I don’t know Javascript.
Here’s my dilemma: I’ve placed functions in an external JS file. Those functions refer to the FORM name in the HTML file. Example:
HTML File
<FORM method="POST" action="summary.jsp" name="choiceForm">
.
.
.
</FORM>
JS File:
function twoToOne() {
var selectedlen = document.choiceForm.selected.length;
.
.
.
}
In my “Problems” tab, I see a warning message:
choiceForm declaration is not found
How can I get rid of this message?
Thanks,
Curt