Previous to using ES6 arrow functions, if I wanted to get the element from a jQuery on()
click event then I could do something like this:
$(document).on('click', '.inserted-el', function(event) {
console.log(this);
});
However, with the arrow function, I can no longer access this
in that way. How do I get hold of the element that was clicked on?