Also supports DOM elements existent on document load. Potentially heavier on performance than "classic" selector.
Selector
/*
Used instead of $('.my-element').click(function (e) {} to be able to listen to click on elements with my-element class
created by JS insertion into DOM after document load.
*/
body.on('click', '.my-element', function (e) {
// [...] Your code.
});