I have this jquery function
function example(file, targetwidget, callback){ $(targetwidget).load(file, {limit: 25}, function(){ $(\"#widget_acco
you need to invoke the function inside the callback
function example(file, targetwidget, callback){ $(targetwidget).load(file, {limit: 25}, function(){ callback(); });