I want to check if an element exists on the page with a specified class (that's created dynamically.)
The simplest would be to do this, but since the elements doesn't exist on the page when the DOM loads, this won't work the way I want it to. (Hopefully I got that correct..)
if($('.list li').hasClass('//aDynamicallyGeneratedClass')){
//Then do this with my object.
});
Update:
I'm running this inside an AJAX function which fetches data from MySQL. That function can be run even if the page doesn't reload so I don't want to use Document.onload.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…