I have tried to imitate some examples, but in my case it does not work, it may seem like another question but I have not really been able to solve it.
I have some listeners in my document.
document.addEventListener("clmtrackrNotFound", function(event) {
//bla bla
}, false);
// detect if tracker loses tracking of face
document.addEventListener("clmtrackrLost", function(event) {
//bla bla
}, false);
// detect if tracker has converged
document.addEventListener("clmtrackrConverged", function(event ) {
},false)
This is repeated every time I access the .js file. How can I remove them all?