[jQuery] Dispatch events into dynamically loaded content

[jQuery] Dispatch events into dynamically loaded content


Hello everybody and my apologies for my poor english but I'm a french
speaker.
I want to dispatch a "load" event on a link in a "loaded" content.
Explanation :
<div>
<a href="someStuffToLoad.php" class="doMyLoad">First and original
link</a>
</div>
$('.doMyLoad').click(
function ()
{
$(this).parent().load( $(this).attr('href') );
}
)
then my content look like
<div>
<a href="someStuffToLoad.php" class="doMyLoad">My second link</a>
</div>
I'd like that the "My second link" can dispatch the click event and
then load the content of a third kind. But that's not what happens and
I understand it because the DOM is not "re-loaded" and JQuery can't
detect the new link...
Any help/link would be appreciated.