Answers for "how to use onclick with event in javascript"

1

javascript button onclick

document.getElementById('button').onclick = function() {
   alert("button was clicked");
};
Posted by: Guest on May-09-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 use onclick with event in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language