Here is my code.
function onMapClick(e) {
e.originalEvent.defaultPrevented = true;
var orig = e.originalEvent;
console.log(orig.target);
}
map.on('click', onMapClick);
console.log will show the tile i.e
<img class="leaflet-tile leaflet-tile-loaded" ... />
But i could not able to find the tile when I use leaflet marker cluster. How to get the tile in leaflet marker cluster with map click event?