Javascript examples for DOM Event:onclick
Call function with onclick attribute
<html> <head> <meta name="viewport" content="width=device-width"> </head> <body> <button onclick="test21()">test</button> <script> function test21(){// w ww. ja va 2 s . com console.log("yey"); } </script> </body> </html>