Is there a way to proxy "this" but also still have access to the "this" of the context you are now within? I typically set this
to self
but I was curious if there was a way to have two contexts while using $.proxy.
For example...
$('.something').on('click', $proxy(function() {
// this = proxied this
// $(this) needs to equal .something
}, this));