Jump to content

Two buttons Action


nirvana

Recommended Posts

Hi All,

Please see the codes I've written in the HTML form with two submit buttons.
It works fine in IE but the buttons don't work in Firefox browser. Whichever button I press, it just calls up "Query.php" in Firefox.
Any idea why it happens? I am new to Javascript and any input is much appreciated.


<input name="display" type="submit" id="Submit" value="Screen Display" onClick="chkAction('1')">
<input name="excel" type="submit" id="Submit" value="Save to EXCEL" onClick="chkAction('2')">

<script language="javascript">
function chkAction(val){
if (val=="1"){
document.form1.action="Query.php";
}
else{
document.form1.action="autosave.php";
}

thanks,
Nirvana
Link to comment
Share on other sites

[!--quoteo(post=353550:date=Mar 10 2006, 04:08 AM:name=fooDigi)--][div class=\'quotetop\']QUOTE(fooDigi @ Mar 10 2006, 04:08 AM) [snapback]353550[/snapback][/div][div class=\'quotemain\'][!--quotec--]
the function may be parsing the passed values literally, meaning that it will return true no matter what you pass it. try not to use the quotes when you are using numeric data types.
[/quote]

Thanks. I did try as follows and removed all the quotes. Hope that's what you suggested.

No matter what i changed, it still works in Internet Explorer.
But still it doesn't work in FireFox.
Anymore suggestion please??

<input name="display" type="submit" id="Submit" value="Screen Display" onClick="chkAction(1)">
<input name="excel" type="submit" id="Submit" value="Save to EXCEL" onClick="chkAction(2)">

<script language="javascript">
function chkAction(val){
if (val==1){
document.form1.action="Query.php";
}
else{
document.form1.action="autosave.php";
}

thanks,
Nirvana
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.