Answers for "button function javascript"

14

javascript onclick button

var button = document.querySelector('button');
button.onclick = function() {
  //do stuff
}
Posted by: Guest on March-10-2020
13

javascript onclick

var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
	//do stuff
}
Posted by: Guest on February-10-2020
0

button in javascript

<!DOCTYPE html>
<html>
<body>

<h2>Example of button </h2>
<p>This is the example of a button clickon it</p>

<button type="button" onclick="document.write(80+20)">click on me</button>

</body>
</html>
Posted by: Guest on July-09-2021

Code answers related to "button function javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language