showing results for - "e stoppropagation 28 29 is not working as expected"
Jana
16 Jun 2016
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