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(); } });
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter