Skip to content

Instantly share code, notes, and snippets.

@henryboldi
Created November 16, 2014 17:52
Show Gist options
  • Save henryboldi/45398787f47bec5be590 to your computer and use it in GitHub Desktop.
Save henryboldi/45398787f47bec5be590 to your computer and use it in GitHub Desktop.
$('#feed').on("click", "img", function(e) {
var offset_t = $(this).offset().top - $(window).scrollTop();
var offset_l = $(this).offset().left - $(window).scrollLeft();
var left = Math.round((e.clientX - offset_l));
var top = Math.round((e.clientY - offset_t));
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment