Answers for "onclick html js"

47

javascript onclick

document.getElementById("myBtn").addEventListener("click", function() {
  alert("Hello World!");
});
Posted by: Guest on July-10-2020
1

javascript button onclick

document.getElementById('button').onclick = function() {
   alert("button was clicked");
};
Posted by: Guest on May-09-2020
3

javascript onclick

// The element id (TheElementID) and var name (myElement) can be named anything.
var myElement = document.getElementByID('TheElementID');
myElement.onclick = function() {
	// Carry out a function here...
}
Posted by: Guest on October-19-2020
1

button onclick

<p id="demo" onclick="myFunction()">Click me to change my text color.</p>

 
<script>
function myFunction() {
  document.getElementById("demo").style.color = "yellow";
}
</script>
Posted by: Guest on August-24-2021
2

html js button onclick

// In HTML:
// <button id="buttonID" onclick="yourJSFunction()">Text</button>

// In JavaScript:
function yourJSFunction() {
  // Do stuff
 }
Posted by: Guest on April-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language