on click button code example
Example 1: HTML button onclick
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<p>There is a hidden message for you. Click to see it.</p>
<button onclick="myFunction()">Click me!</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello Dear Visitor!</br> We are happy that you've chosen our website to learn programming languages. We're sure you'll become one of the best programmers in your country. Good luck to you!";
}
</script>
</body>
</html>
Example 2: javascript click event
<button onclick="myFunction()">Click me</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello World";
}
</script>
Example 3: javascript onclick
var myElement = document.getElementByID('TheElementID');
myElement.onclick = function() {
}
Example 4: button on click script
<button onclick="myFunction()">Click me</button>
Example 5: on click
BODY ();
background-color: "# 5b6870";
font-family: "verdana", Arial;
font-size: 10pt;
color: "# 000000";
margin-top: 0pt; margin-left: 0pt; }
P {
font-family: "verdana", Arial;
font-size: 10pt;
}
A: link {text-decoration: none; color = "123888"; font: "Verdana"; font-size: 8pt; }
A: visited {text-decoration: none; color = "123888"; font: "Verdana"; font-size: 8pt; }
A: hover {text-decoration: none; color = "C62A2A"; font: "Verdana"; font-size: 8pt; }
Az: link {text-decoration: none; color = "123888"; font: "Verdana"; font-size: 10pt; }
Az: visited {text-decoration: none; color = "123888"; font: "Verdana"; font-size: 10pt; }
Az: hover {text-decoration: none; color = "C62A2A"; font: "Verdana"; font-size: 10pt; }