With Javascript it is possible to stop propagation with code? E.g.
function func1(event) {
alert("DIV 1");
if (document.getElementById("check").checked) {
event.stopPropagation();
}
}
Is it also possible to stop propagation by CSS?
pointer-events: none
) - but it can not really stop event propagation, that is not even remotely it’s job to begin with. – Soever