Hello,
I have multiple submit button, each with unique onClick"" command. However, when I click one submit button, both onClick command is executed.
for instant, below is pseudocode...
<form...>
<input..submit...onClick="Do A">
<input...submit...onClick="Do B">
</form>
When I click on submit button with onClick value of Do A,
Both Do A and Do B is executed... How can I solve problem?
I want only that button that I click to execute its onClick command.
Please help me on this.. thank you..
I have multiple submit button, each with unique onClick"" command. However, when I click one submit button, both onClick command is executed.
for instant, below is pseudocode...
<form...>
<input..submit...onClick="Do A">
<input...submit...onClick="Do B">
</form>
When I click on submit button with onClick value of Do A,
Both Do A and Do B is executed... How can I solve problem?
I want only that button that I click to execute its onClick command.
Please help me on this.. thank you..