Consider a piece of code that looks like the following:
$('body').on('click', function(e){
});
I know there is a way to get the element type from e.target
, i.e. e.target.nodeName
, but how can I get the id of that element from that? If that can't be done, is there another way to get the id of the element that was clicked on?