Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created April 28, 2015 15:30
Show Gist options
  • Save csharpforevermore/7c420f6e147b48b89598 to your computer and use it in GitHub Desktop.
Save csharpforevermore/7c420f6e147b48b89598 to your computer and use it in GitHub Desktop.
get element being clicked
var clicky;
$(document).mousedown(function (e) {
// The latest element clicked
clicky = $(e.target);
});
$(selector).mouseup(function (e) {
clicky = null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment