Each of my li's have a class of 'galleryImage', inside that is a span with the class 'delete'. When the user clicks on the span delete I want the js to do something, but the following code doesn't seem to fire, whats wrong with it?
$('.galleryImage .delete').click(function() {
alert("Handler for .click() called.");
});