I have this jquery function
function example(file, targetwidget, callback){
$(targetwidget).load(file, {limit: 25}, function(){
$("#widget_accordion").accordion({fillSpace: true});
});
}
it's working ok when I do:
example('http://example.com/', "#divid", callback);
but I want to send the callback function inside the (callback) variable i.e: instead of butting the $("#widget_accordion").accordion({fillSpace: true}); inside the callback function I want to send it:
example('http://example.com/', "#divid", '$("#widget_accordion").accordion({fillSpace: true});');
and then the function must be something like:
function example(file, targetwidget, callback){
$(targetwidget).load(file, {limit: 25}, function(){
callback;
});
but that's not working
Thanks in advance for your help