button on click js code example

Example 1: javascript onclick

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

Example 2: javascript button onclick programmatically

document.getElementById("myCheck").click();

Example 3: javascript onclick

document.getElementById("Save").onclick = function ()
    {
     alert("hello");
     //validation code to see State field is mandatory.  
    }

Example 4: javascript button onclick

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

Example 5: javascript button

<button onclick="Function()">Text</button>

Example 6: javascript onclick

var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
	//do stuff
}

Tags:

Java Example