I'm facing few problems especially with event bubbling and also with the "live" method.
I have a table with few cells and in each cell "td", there is a list and a links "li a". The links have a ".class" associated with them.
So I just want to make the links works, I use the live method (because they are created dynamically)
$('.aclass').live('click',function() {
// Do something
});
when I watch event listening using Google Chrome Developer tools, I see that not the link that listen for the anonymous function, but the whole cell "td".
Why? How can I make the link listen to the function?