How to call a function after jQuery .append is completely done?
.append
Here\'s an example:
$(\"#root\").append(child, function(){ // Action
the Jquery append function returns a jQuery object so you can just tag a method on the end
$("#root").append(child).anotherJqueryMethod();