Answers for "javascript onclick this object"

47

javascript onclick

document.getElementById("myBtn").addEventListener("click", function() {
  alert("Hello World!");
});
Posted by: Guest on July-10-2020
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>
Posted by: Guest on November-30-2020
1

javascript button onclick

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language