onclick event object code example

Example 1: javascript onclick

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

Example 2: javascript onclick get event

<div onclick="doSomething(event,this)"></div>
<script>
     function doSomething(e,el){
         e = e || window.event;
         console.log(e); //will be the event
         console.log(el); //we be the dom element 
     }
</script>

Example 3: javascript onclick

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

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

Tags:

Misc Example