Skip to content

Instantly share code, notes, and snippets.

@livingston
Created March 15, 2011 15:47
Show Gist options
  • Save livingston/870909 to your computer and use it in GitHub Desktop.
Save livingston/870909 to your computer and use it in GitHub Desktop.
function getTarget (e) {
var targ;
e = e || window.event;
targ = e.target || e.srcElement;
return (targ.nodeType == 3)? targ.parentNode : targ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment