event propagation not working

Solutions on MaxInterview for event propagation not working by the best coders in the world

showing results for - "event propagation not working"
Gianluca
15 Feb 2019
1//this works like charm
2function DownloadAsset(AssetId, e) {
3
4    if (!e) var e = window.event
5    e.cancelBubble = true;
6    if (e.stopPropagation) e.stopPropagation();
7
8    // your ajax call
9    $.ajax({....})
10}
11
similar questions
queries leading to this page
event propagation not working