When I test certain codes on test pages, they work, but when I add them to my website, they don't. I am wondering if maybe certain functions are over-riding others?
In my coding I have more than 1 form, but I named them differently from one another.
For example:
Code:
<form name="forms" method="post" onSubmit="return check(this);">
and
Code:
<form name="form1" method="get" onSubmit="return LengthValidator(this)">
When I hit Submit, only one works. That is why I am thinking it may be over-riding the other function.
If there is a way to fix this, it would help solve a lot of my coding troubles that I have been coming across lately.
- Shannon -