“JavaScript OnClick Get Event” Código de respuesta

onclick en no botón

var ele = document.getElementById('x');
if(typeof ele.click == 'function') {
  ele.click()
} else if(typeof ele.onclick == 'function') {
  ele.onclick()
}
Thankful Termite

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>
Friendly Hawk

Respuestas similares a “JavaScript OnClick Get Event”

Preguntas similares a “JavaScript OnClick Get Event”

Más respuestas relacionadas con “JavaScript OnClick Get Event” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código