एक से अधिक JavaScript फ़ंक्शन को ऑन क्लिक इवेंट में कॉल करने के लिए, एक अर्धविराम का उपयोग करें जैसा कि नीचे दिखाया गया है -
onclick="Display1();Display2()"
उदाहरण
लाइव डेमो
<html> <head> <script> function Display1() { document.write ("Hello there!"); } function Display2() { document.write ("Hello World!"); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "Display1(); Display2()" value = "Result"> </form> </body> </html>