Closed
Bug 94116
Opened 25 years ago
Closed 25 years ago
Wrong radio button selection
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
People
(Reporter: ldegiorgi, Assigned: asa)
Details
The proble arise if I use a page like this where I have 2 mutually exclusive
radio buttons.
<html>
<head>
<title>Trans Entry</title>
</head>
<body bgcolor="#ffffff">
<h1>Trans Entry</h1>
<p><input type="radio" name="pippo" value="checking">Addebito</input>
<input type="radio" name="pippo" value="savings">Accredito</input>
</p>
</body>
</html>
If I select a radio button and later I select the other, will not be deselected.
The same code works perfectly on Explorer!!!(sigh)
Comment 1•25 years ago
|
||
This is not a bug. Mozilla doesn't know which form these elements belong to, and
assumes that they are in seperate forms. So, obviously, you can see why both
buttons can be selected at once. Simply putting in a form tag solves your problem.
By the HTML spec, you should never have <input> elements without a <form>
element. I suggest in future paying close attention to <form> tags.
Updated•25 years ago
|
Whiteboard: DUPEME
Comment 2•25 years ago
|
||
*** This bug has been marked as a duplicate of 14445 ***
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
Whiteboard: DUPEME
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•