Skip to content

Instantly share code, notes, and snippets.

@sinfere
Created July 12, 2014 02:50
Show Gist options
  • Save sinfere/21cb90a774006a06dd97 to your computer and use it in GitHub Desktop.
Save sinfere/21cb90a774006a06dd97 to your computer and use it in GitHub Desktop.
jQuery Firefox offsetX offsetY fix
function (e)
{
if (!e.offsetX) {
// FireFox Fix
e.offsetX = e.pageX - $(e.currentTarget).offset().left;
e.offsetY = e.pageY - $(e.currentTarget).offset().top;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment