How to call a function after jQuery .append is completely done?
.append
Here\'s an example:
$(\"#root\").append(child, function(){ // Action
I know it's not the best solution, but the best practice:
$("#root").append(child); setTimeout(function(){ // Action after append },100);