In this tutorial we will learn How To Call JavaScript Function on Button Click. For this we can use onclick attribute which will trigger the JavaScript function on button click.
Table of Contents
HTML Code
HTML Code is given below, we have one button tag with onclick attribute.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Call JavaScript Function on Button Click</title>
</head>
<body>
<button onclick="call()">Call JS Function</button>
</body>
</html>
JavaScript Code
Take a look at the JavaScript code given below.
<script>
function call(){
alert("Hello!");
}
</script>
On button click above function will be called and the statement inside will be executed.
Video Tutorial
Watch video tutorial on How To Call JavaScript Function on Button Click.