I'm trying to add event listeners to div groups but when i console log the event i can only see the events from the parent's elements but not the group itself..
Returns something like this:
pointerdown { target: p, buttons: 1, clientX: 192, clientY: 786, layerX: 192, layerY: 927 }
When it should really return something like this:
pointerdown { target: div.song-group, buttons: 1, clientX: 192, clientY: 786, layerX: 192, layerY: 927 }
Any help would be appreciated!
no comments