preventDefault and stopPropagation in JS
IntroductionWhen we deal with event on DOM, jQuery always very helpful. But javascript has this mechanic called event bubbling is quite annoying. So be careful when you deal with them. Event BubblingWe all know DOM elements can be nested inside each other which is great for structure. But it causes some troubles when y...