Closed
Bug 122617
Opened 24 years ago
Closed 21 years ago
camelot-europe.com - form not processed when clicking image with OnSubmit() event
Categories
(Tech Evangelism Graveyard :: French, defect, P2)
Tech Evangelism Graveyard
French
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: weriau, Unassigned)
References
()
Details
(Whiteboard: [havecontact][havefix] [proprietary-dom])
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.8) Gecko/20020128
BuildID: 2002012806
a button is supposed to submit a form when clicked, but nothing happens.
javascript console returns :
Error: form1 is not defined
Source File: http://billing.camelot-europe.com/www/login.php?game=daoc&language=fr
Line: 20
... but the form IS defined, on line 14 !! what's wrong ?
By the way the page works with both IE and Opera 6.
Hope this can improve Mozilla, which is an impressive browsers anyway :)
Reproducible: Always
Steps to Reproduce:
1. Click the button looking like a right arrow
2. either fill the form or not, it doesn't matter
3.
Actual Results: nothing :(
Expected Results: send the form data
WHERE THE FORM IS DEFINED
<form METHOD="POST" ACTION="login_valid.php" NAME="form1">
WHERE THE JAVASCRIPT "ERROR" OCCURS
<!--
function OnSubmit()
{
form1.password.value= calcMD5(form1.password.value + 'SUxPVkVE');
if(form1.login.value == '')
alert("Vous devez saisir votre login !");
else if(form1.password.value == '')
alert("Vous devez saisir votre mot de passe !");
else
form1.submit();
}
-->
Comment 1•24 years ago
|
||
instead of "form1." use "document.form1." and it will work
Comment 2•24 years ago
|
||
->>
Assignee: alexsavulov → nitot
Component: Form Submission → Europe: West
Product: Browser → Tech Evangelism
QA Contact: vladimire → caillon
Version: other → unspecified
strange ...
that looks like a bug to me ... if there's only one form in the document, one shouldn't have to specify it explicitly in a function, don't you think ?
in my opinion at least :)
confirmed.
the webmaster's email is kemor@goa.com however i don't have time to send him
some mail right now..
Status: UNCONFIRMED → NEW
Ever confirmed: true
added url in the summary.
Summary: form not processed when clicking image with OnSubmit() event → camelot-europe.com form not processed when clicking image with OnSubmit() event
Comment 6•23 years ago
|
||
Like there is a contact mail, let's add [havecontact].
Whiteboard: [havecontact]
Updated•23 years ago
|
Priority: -- → P2
Updated•23 years ago
|
Whiteboard: [havecontact] → [havecontact][havefix]
10 months later... has anyone contacted them?
OS: Windows 98 → All
Hardware: PC → All
Whiteboard: [havecontact][havefix] → [havecontact][havefix] [proprietary-dom]
Updated•22 years ago
|
Summary: camelot-europe.com form not processed when clicking image with OnSubmit() event → camelot-europe.com - form not processed when clicking image with OnSubmit() event
Comment 9•22 years ago
|
||
-> french default owner
Assignee: nitot → french
QA Contact: z-caillon-obsolete2 → french
Comment 10•21 years ago
|
||
site no longer exists, marking invalid
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
Updated•11 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•