I\'m new to ES6, and can\'t quite get this to work:
$(this) returns undefined on click?
$(this)
dom.videoLinks.click((e) => { e.
You can use $(event.target) instead of $(this) even inside of an arrow function. Arrow functions are preserving this of the scope where they were defined. In your case it is undefined.
$(event.target)
this
undefined