When you hover over one of the images on the following site a div appears with action buttons contained in it. When you click on the div a pop-up is meant to open, when you click on the child action buttons a different event is meant to happen.
At the minute the pop-up happens when you click on one of the div's child buttons. I tried to stop the event propagation using the code below.
http://penguinenglishlibrary.tumblr.com/
$(document).on('click', '#DOMWindow .like', function(event) {
event.preventDefault();
event.stopPropagation();
});
DOMWindow?