Alright I have this :
$('.myKnownClass').click(function() {
$('.menu').addClass('testingClass');
});
When I click on the .myKnownClass, another script adds a div.menu, but it doesn't create it instantly (like 0.4 seconds, depends on the server).
Is there any way, within the "click", to wait till a div.menu is present on the body ?
Thanks.