I have a delegated focus event handler that is being triggered twice, can someone kindly tell me why this is happening? It will only be triggered once if the on click event handler is used instead.
$(document).on('focusin', '.select2-selection--multiple', function(event){
console.log("IN HERE IN HERE");
console.log(event);
});
Results
Detailed Event Data 1
Detailed Event Data 2