jagasker
Junior Member
Posts: 2
Registered: 9/10/2005
Member Is Offline
|
| posted on 10/9/2006 at 07:25 AM |
|
|
Var V not defined
Hello,
I was opening a web page that I had written using the form validator, and I keep getting the following javascript error.
Line: 43
Char: 1
Error: 'v' is undefined
Code: 0
Any help to correct this issue would be greatly appreciated. A copy of the code from the web page that I created is attached.
jagasker
Attachment: code_from_web_page.txt (3.09kb)
This file has been downloaded 421 times
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 10/9/2006 at 10:53 AM |
|
|
This means that new validator(..) call has failed to create the validator object. The reason for that may be the error somewhere else. Scroll through
the error messages to see what actually caused that. My guess would be the comma before the closing bracket:
'mx': 7 // maximum length
}, // <- here
},
|
|
|