Under my app i wonder which element is catching my click ,
I ve tried to to this test :
$(document).on('click', event => {
const clickedElement = $(event.target);
console.log(clickedElement);
});
When clicking under some elements its seems that jquery is not seeing the click ,
nothing is printed in console
How may is force this actions ?
Suggestions ?