StopImediatePropagation vs StopPropagation
<!---- stopImmediatePropagation() vs stopPropagation() ----------------->
`stopPropagation` allows other event handlers on the SAME ELEMENT
on the SAME EVENT to be executed, while `stopImmediatePropagation`
prevents this.
<script>
el.addEventListener( "click", e => e.stopImmediatePropagation() )
el.addEventListener( "click", e => console.log("This will not run.") )
</script>
<!----------------- stopImmediatePropagation() vs stopPropagation() ---->
KostasX