Answers for "button onclick js function"

47

javascript onclick

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

how to add onclick event in javascript

var element = document.getElementById("elem");
element.onclick = function(event) {
  console.log(event);
}
Posted by: Guest on May-20-2020
4

run a function when a button has the onclick

<script>
function myFunction() {
  alert("ALERT THIS FUNCTION HAS RUNNED");
}
</script>
<button onclick="myFunction">click to run function</button>
Posted by: Guest on September-22-2020
1

javascript button onclick

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

javascript onclick button

var button = document.querySelector('button');
button.onclick = function() {
  //do stuff
}
Posted by: Guest on March-10-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language