How to call a function after jQuery .append is completely done?
.append
Here\'s an example:
$(\"#root\").append(child, function(){ // Action
$('#root').append(child); // do your work here
Append doesn't have callbacks, and this is code that executes synchronously - there is no risk of it NOT being done