Consider a piece of code that looks like the following:
$(\'body\').on(\'click\', function(e){ });
I know there is a way to get the elemen
$('body').on('click', function(e){ var id = $(this).attr('id'); alert(id); });