Closed
Bug 282302
Opened 20 years ago
Closed 20 years ago
page won't stop loading when submit called a javascript function.
Categories
(Toolkit :: Form Manager, defect)
Tracking
()
People
(Reporter: m.vanderlinden, Assigned: bugs)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; nl-NL; rv:1.7.5) Gecko/20041202 Firefox/1.0
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; nl-NL; rv:1.7.5) Gecko/20041202 Firefox/1.0
Source :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<script type="text/javascript">
function testRefresh()
{
document.write( "testrefresh" )
return ;
}
function testSubmit()
{
document.write( "testsubmit" )
return ;
}
</script>
<form action="test.php" method="post" name="testform" id="testform">
<select name="animals" onChange="testRefresh();">
<option value="cat">cat</option>
<option value="cat">dog</option>
<option value="cat">horse</option>
</select>
<input type="button" value="Test" onClick="testSubmit();">
</form>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
1. Just load de page I submitted in the detail box.
2.
3.
Actual Results:
Page won't stop loading!
Expected Results:
Stop loading :-)
Comment 1•20 years ago
|
||
*** This bug has been marked as a duplicate of 81980 ***
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
Product: Firefox → Toolkit
You need to log in
before you can comment on or make changes to this bug.
Description
•