Is there any way to call multiple functions with a single event? Hi all,
Is there any way to call multiple functions with a single event?
eg:
<SCRIPT LANGUAGE="JavaScript"><!--
functionname1() {
....
}
functionname2() {
....
}
functionname() {
functionname1();
functionname2();
}
//--></SCRIPT>
<a href="#" onClick="functionname()">link</a>
Like above example.
Thanks & regards,
vani |