Languages
[Edit]
EN

HTML - button input

3 points
Created by:
Palpys
764

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>

References

Alternative titles

  1. HTML - input type button
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

HTML - input element types

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join