Is there a way to register a low-level js event that could never be stopped from bubbling?
I'm constructing a base-class that should always receive onclick event. The problem is that child class could use e.stopPropagating() which effectively cuts my base onclick behavior.
Is there a way to be able to receive onclick event in base-class independently of what people can (over)write in child class?