Answers for "how to call a function when a button is clicked in javascript"

9

javascript button

<button onclick="Function()">Text</button>
Posted by: Guest on May-10-2020
13

javascript onclick

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

Code answers related to "how to call a function when a button is clicked in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language