EN
HTML - button input
3
points
In this article, we would like to show you how to use button input in HTML.
Quick solution:
<input type="button" value="Click me!" onclick="myFunction()" />
or equivalent:
<button onclick="myFunction()">Click me!</button>
Practical example
In this example, we create a button using HTML input
element (type
attribute set to button
).
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
<script>
const myFunction = () => {
console.log("Button clicked ...");
};
</script>
</head>
<body>
<input type="button" value="Click me!" onclick="myFunction()" />
</body>
</html>