Answers for "on click a button javascript"

55

javascript onclick

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

click button javascript

// Create variable for what you are trying to click
let button = document.querySelector("#IDofItem");

// Click the button

if (button) {
  button.click();
}
else {
  console.log("Error");
}
Posted by: Guest on March-03-2021
4

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

Code answers related to "on click a button javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language