Skip to content

Instantly share code, notes, and snippets.

@robinhayward
Created February 7, 2013 17:25
Show Gist options
  • Save robinhayward/4732569 to your computer and use it in GitHub Desktop.
Save robinhayward/4732569 to your computer and use it in GitHub Desktop.
$('.class-for-page-elements').live("hover", function(event) {
var imageElement = event.element;
var url = $(imageElement).attr('src');
alert('You hovered an element with this url: ' + url);
$(imageElement).doSomeCoolZoomPluginStuff();
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment