I would like to catch some attributes in a content but this content is updated by Ajax.
The issue is that my function trigger before the whole content is displayed, so I don’t catch anything.
I want my function to wait for the end of the ajax function.
I thought, there was an option like :
$(element).ready(function() {
blablabla;
});
Thank you !
Put your function in the success section of the $.ajax function?
For example: