You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There does not appear to be a way to call an unnamed function from an external API. If the function to be called was declared ahead of time, it has a name. So the external API can append JavaScript to call it by name. It would be nice if there was a similar way to call unnamed functions.
Unnamed function example:
externalAPI(function(){
alert('external API is finished');
});