L
led
its possible to call 2 functions in the onsubmit form event
if how the sintax
if how the sintax
David Berry said:You could separate them with a semi-colon, such as
<form METHOD="POST" action="uploadscript3.asp" name="fp1" onsubmit="return
checkCheckBoxes(this); myFunction();">
or why not just add a call to the second function inside of the first (at
the end of the function)? Ex:
function checkCheckBoxes() {
....... your code
myFunction();
}
Murray said:You might want to make sure that the return event is last in the chain.