Hi,
In jQuery 1.3 there is a new .live() method that is a subset of the
livequery plugin.
http://docs.jquery.com/Events/live#typefn

I tried this and it works OK - I get 2 alert messages:
$(".flickr-photo a img")
  .live("click", function() {
    alert('img click');
});

$(".flickr-photo a")
  .live("click", function() {
    alert('a click');
});

Paul

Reply via email to