Answers for "e.stoppropagation() not work in jquery"

1

jquery stopPropagation

$( "selector" ).click(function( event ) {
  event.stopPropagation();
  // Do something
});
Posted by: Guest on January-02-2022
1

event stoppropagation not working

// works like charm
function DownloadAsset(AssetId, e) {

    if (!e) var e = window.event
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();

    // your ajax call
    $.ajax({....})
}
Posted by: Guest on September-23-2021

Code answers related to "e.stoppropagation() not work in jquery"

Browse Popular Code Answers by Language