Tho this question has been asked before, and the answer is this:
$('#container').on('click','#dynamicElement', function(){ /* the code */ });
The code above will find the #dynamicElement
when its being clicked on.
But what if there is no click, nor any other event?
Suppose the following scenario:
$.ajax(
url:'file.php',
data: {'param':'value'},
success: function(response){
/*
how would I get #dynamicElement if it was not click on?
the element had no event fired at all, nor had any of its parennt
containers.
Now what?
*/
}
);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…