473,472 Members | 1,800 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

submit within onchange not working correctly in Firefox

Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason. However, after I press the ok button, it
submits the form, and then the combo boxes start working normally. In
IE, everything works fine.
I appreciate any help. Thank you.

<html>
<head>
<title>.:Guimar&atilde;es Comercial:.</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<script language="javascript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>

</head>

<body bgcolor="#FFFFFF" text="#000000"
background="figuras/laretal.jpg">
<br>
<form name="frmlateral" method="post" action="lateral.asp">
<p> <br>
&nbsp;&nbsp;
<select name="cbonivel1" size="1"
onChange="javascript:atualizar();">
<option value=1 selected>Instrumentos</option>
<option value=2>Móveis p/ Igreja</option>
<option value=3>Diversos</option>
</select>
<br>
&nbsp;&nbsp;
<select name="cbonivel2" size="1"
onChange="javascript:atualizar();">
<option value=1 selected>Inst. De Corda</option>
<option value=2>Inst. De Percusão</option>
<option value=3>Inst. De Sopro</option>
<option value=4>Inst. De Teclado</option>
<option value=5>Listão Weril</option>
</select>
<br>
&nbsp;&nbsp;
<select name="cbonivel3" size="1"
onChange="javascript:atualizar();">
<option value=1 selected>Violino</option>
<option value=2>Viola</option>
<option value=3>Violoncello</option>
<option value=4>Contra Baixo (Rabecão)</option>
<option value=5>Violões Yamaha</option>
<option value=6>Violões Eagle</option>
<option value=7>Violões Di Giorgio</option>
<option value=8>Violões Importados</option>
</select>
<input type="submit" name="Submit" value="ok"
onClick="javascript:busca1();">
</p>

<p>&nbsp;</p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
<input type="text" name="textfield" size="8">
<input type="submit" name="Submit2" value="ok">
</form>
<p><br>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash..cab#version=5,0,0,0"
width="150" height="160">
<param name=movie value="figuras/banner.swf">
<param name=quality value=high>

<embed src="figuras/banner.swf" quality=high
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" width="150" height="160">
</embed>
</object> <br>
<a href="#"
onClick="MM_openBrWindow('atendimento.htm','','wid th=310,height=240')"><img
src="figuras/atendimento.jpg" width="146" height="43" border="0"></a>
</p>
</body>
<script language="javascript">
function atualizar()
{
frmlateral.submit();
}

function busca1()
{
alert("teste3");
}
</script>
</html>

Oct 17 '05 #1
5 3434
Lee
Pascal Batzli Jr said:

Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason. frmlateral.submit();


No, it's not weird at all. You're using an IE shortcut that Firefox and other
browsers don't support. The correct way to refer to your form is:

document.frmlateral.submit();

Oct 17 '05 #2
Lee wrote:
Pascal Batzli Jr said:
Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason.


frmlateral.submit();

No, it's not weird at all. You're using an IE shortcut that Firefox and other
browsers don't support. The correct way to refer to your form is:

document.frmlateral.submit();


That'll do the job, more formally:

document.forms['frmlateral'].submit();
is perhaps considered the 'correct' way. Another is:

document.forms.frmlateral.submit();


--
Rob
Oct 17 '05 #3
RobG said the following on 10/17/2005 1:08 AM:
Lee wrote:
Pascal Batzli Jr said:
Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason.

frmlateral.submit();


No, it's not weird at all. You're using an IE shortcut that Firefox
and other
browsers don't support. The correct way to refer to your form is:

document.frmlateral.submit();


That'll do the job, more formally:

document.forms['frmlateral'].submit();
is perhaps considered the 'correct' way.


I have to ask a question I have asked in the past:

Is there a known browser where document.forms['frmlateral']submit()
submits the form but document.frmlateral.submit() doesn't?

The first assumes the named form is a property of the document object,
the second one doesn't. So I guess the real question is if there is a
known browser that doesn't make named forms a property of the document
object.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Oct 17 '05 #4
Randy Webb wrote:
RobG said the following on 10/17/2005 1:08 AM:
Lee wrote:
Pascal Batzli Jr said:

Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason.


frmlateral.submit();


No, it's not weird at all. You're using an IE shortcut that Firefox
and other
browsers don't support. The correct way to refer to your form is:

document.frmlateral.submit();

That'll do the job, more formally:

document.forms['frmlateral'].submit();
is perhaps considered the 'correct' way.

I have to ask a question I have asked in the past:

Is there a known browser where document.forms['frmlateral']submit()
submits the form but document.frmlateral.submit() doesn't?


I don't know.

I just figured it was worth mentioning the various ways, since often
(well, occasionally) a question is asked about how to access a form or
form control where a string has been used for the name that can't be
successfully used with dot notation, hence square brackets are
required - e.g. name="form[6]".

Perhaps I should have included that tidbit, or at least a reference to
the appropriate FAQ section:

<URL:http://www.jibbering.com/faq/#FAQ4_36>


The first assumes the named form is a property of the document object,
the second one doesn't. So I guess the real question is if there is a
known browser that doesn't make named forms a property of the document
object.


The answer is if the name can't be used with dot notation then square
brackets are required.
--
Rob
Oct 17 '05 #5
Lee,
I worked perfectly. That's why I hate Microsoft products.... they are
made for lazy programmers!
Thank you very much!
Pascal

Lee wrote:
Pascal Batzli Jr said:

Hello,
I have a strange situation happening on the code below. When I first
load the page, as I change any of the three combo boxes I have created,
the onchange event is fired and the form should be submitted, but it
isn't for some weird reason.

frmlateral.submit();


No, it's not weird at all. You're using an IE shortcut that Firefox and other
browsers don't support. The correct way to refer to your form is:

document.frmlateral.submit();


Oct 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Bart van Deenen | last post by:
Hi all I have a script where I dynamically create multiple inputs and selects from a script. The inputs and selects must have an associated onchange handler. I have the script working fine on...
2
by: somaskarthic | last post by:
Hi In my php code , i dynamically created table rows on button click event. Each row contain 3 selectboxes, 7 checkboxes . On each click of these elements i need to submit the form and save the...
5
by: Steve JORDI | last post by:
Just a question using images as submit buttons and PHP4.4.4. It seems that my code correctly works in FireFox but not in IExplorer. For example, I have a FORM with 2 buttons called "search" and...
4
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all I have the following code: I am trying to use the value of the image button to evaluate what plan the user has chosen, i.e. it request("submit1")="Basic", then the user chose basic plan...
5
by: atulvp | last post by:
Hi all, I have written a javascript code which changes the combo_2 options on runtime. It is working fine on IE but not working on Firefox. Please help me solve this problem. My code is as...
1
by: rynato | last post by:
I ran into an interesting problem while working on a form: I have a drop down list (think <form><select><option>...) of 'open sessions' which a user can choose from to continue entering data....
10
by: The Natural Philosopher | last post by:
I am coding up a bit of javascript stuff, and have managed to stumble my way through most of what I want.. But this one has got me stumped. I call submit() and get a javascript error 'Submit...
22
by: DL | last post by:
Hi, What I wanted to do is to call a function from a newly created element. But it stumbled me. Here's the line that references the newly created element and I used the alert function for...
14
by: white lightning | last post by:
How to have <select onchange="this.form.submit()"and also a Submit button on one form? I have something like this: <form action="<?php $_SERVER; ?>" method="post"...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.