DOM | jonmircha - document.addEventListener

PHOTO EMBED

Sun Oct 31 2021 17:32:00 GMT+0000 (Coordinated Universal Time)

Saved by @rstringa #addeventlistener

function flujoEventos(e) {
  console.log(
    `Hola te saluda ${this} el click lo originó ${e.target.className}`
  );
  //e.stopPropagation();
}

document.addEventListener("click", (e) => {
  if (e.target.matches(".eventos-flujo div")) {
    flujoEventos(e);
  }

  if (e.target.matches(".eventos-flujo a")) {
    alert("Hola soy tu amigo y docente digital... Jonathan MirCha");
    e.preventDefault();
    //e.stopPropagation();
  }
});
content_copyCOPY

https://jonmircha.com/dom