Answers for "dom adding onclick attribute"

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
0

how to add onclick to child element created javascript

elemm.onclick = function() { alert('blah'); };
Posted by: Guest on June-24-2020
0

onclick on non button

var ele = document.getElementById('x');
if(typeof ele.click == 'function') {
  ele.click()
} else if(typeof ele.onclick == 'function') {
  ele.onclick()
}
Posted by: Guest on July-30-2020

Browse Popular Code Answers by Language