Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.3.0 Release
-
None
-
None
-
Using IE 5.5 (on Windows 2000) and trying to validate an html form containing an html select named id
Description
Using IE 5.5 and trying to validate an html form containing an html select named id,
the jcv_retrieveFormName is confused and return the html select instead of the form name.
I get it working by checking the id was a string by replacing (in validateUtilities.js)
if (form.getAttribute("id")) {
by
if (form.getAttribute("id") && form.getAttribute("id") instanceof String) {