js onclick button code example

Example 1: javascript onclick

document.getElementById("myBtn").addEventListener("click", function() {
  alert("Hello World!");
});

Example 2: javascript button onclick

document.getElementById('button').onclick = function() {
   alert("button was clicked");
};

Example 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...
}

Example 4: calling function on click html

<img src="hospital.png" id="hospitals" onclick="damarkers();">

Tags:

Html Example