Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 23714 invoked from network); 27 Sep 2006 11:58:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Sep 2006 11:58:43 -0000 Received: (qmail 39719 invoked by uid 500); 27 Sep 2006 11:58:40 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 39639 invoked by uid 500); 27 Sep 2006 11:58:39 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 39628 invoked by uid 99); 27 Sep 2006 11:58:39 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Sep 2006 04:58:39 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [209.237.227.198] ([209.237.227.198:60551] helo=brutus.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 49/10-25968-3376A154 for ; Wed, 27 Sep 2006 04:57:39 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 3B9C77141D1 for ; Wed, 27 Sep 2006 11:53:50 +0000 (GMT) Message-ID: <2429355.1159358030240.JavaMail.jira@brutus> Date: Wed, 27 Sep 2006 04:53:50 -0700 (PDT) From: "Xavier Poinsard (JIRA)" To: commons-dev@jakarta.apache.org Subject: [jira] Created: (VALIDATOR-201) jcv_retrieveFormName pb with IE 5.5 and form containing an html select named id MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N jcv_retrieveFormName pb with IE 5.5 and form containing an html select named id ------------------------------------------------------------------------------- Key: VALIDATOR-201 URL: http://issues.apache.org/jira/browse/VALIDATOR-201 Project: Commons Validator Issue Type: Bug Components: JavaScript Affects Versions: 1.3.0 Release Environment: Using IE 5.5 (on Windows 2000) and trying to validate an html form containing an html select named id Reporter: Xavier Poinsard 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) { -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org