In PHP, I setup through a JSON endpoint to request a callback using a JavaScript function labeled MyJavaScriptCallback.
And the JSON response after execution is a long string that contains JavaScript, for example:
Code: Select all
if(typeof MyJavaScriptCallback == 'function') MyJavaScriptCallback(...);Thanks
Jeff in Seattle