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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.