I'm sure there must be an easy way around this problem but am currently struggling to fing the required solution.
Currently i am using the syntax for javascript validation before submitting the form to enure my text area has <5 characters which is fine.
if (theForm.textname.value.length <5)
Then...
however it is also possible the text value could be null which is causing me the problem therefore i am looking for a solution along these lines
if (theForm.textname.value.length >1 <5)
Then...
any suggestions!!
Currently i am using the syntax for javascript validation before submitting the form to enure my text area has <5 characters which is fine.
if (theForm.textname.value.length <5)
Then...
however it is also possible the text value could be null which is causing me the problem therefore i am looking for a solution along these lines
if (theForm.textname.value.length >1 <5)
Then...
any suggestions!!