Answers for "add to onclick for a button javascript"

2

javascript inline 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
0

javascript change button onclick

function Bar() {
  document.getElementById("a").onclick = Foo();
}
Posted by: Guest on September-13-2020

Code answers related to "add to onclick for a button javascript"

Browse Popular Code Answers by Language