Getting the Right 'this'
With jQuery, you often find yourself using an event listener with a callback function like so:
// Common Event Handler
$(document).ready(function () {
$(".my-element").click(function () {
console.log("this is ", this);
});
});