I am trying to disable the mousedown event with javascript. I am trying to modify a project of github so I don't know exactly the event function name. I can disable it through firefox,chrome tool but I cannot disable it programmaticaly. I have tried
$('.konvajs-content').off('mousedown');
$(".konvajs-content").onmousedown = null;
$(".konvajs-content").on("mousedown", function(e){
e.preventDefault();
e.stopImmediatePropagation();
e.returnValue = false;
});
It seems like another event is created but the event from Konva is not disabled. This is the image of my console log and the event I want to disable