Jump to content

calling two js functions using one submit button


rekha

Recommended Posts

Hi

 

I want to call two js functions using one submit button.I have tried the below code.But it gives error.

 


<script language=javascript>
function one() 
{ 
document.write("hai"); 
} 
function two() 
{ 
document.write("All");
}
</script>
<form>
<input type=button value="ok" onClick="two();one()" > 
</form>

 

I got the error as

 

one is not defined.

 

But i am getting All as output.

 

Pls anybody solve this ....

 

Regards

Rekha

Link to comment
Share on other sites

<script type="text/javascript">
function one() 
{ 
   document.write("hai")
} 
function two() 
{ 
   document.write("All")
}

function wrapper()
{
   one()
   two()
}
</script>
<form>
<input type=button value="ok" onClick="wrapper()" > 
</form>

Link to comment
Share on other sites

You cant do it like that. You already tried and it didn't work. So I told you how to do it. Look at what I posted, and do that.

There's nothing wrong with calling multiple functions in an event handler -- as long as none of them return.

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.