|
how get the javascript returned by ajax running in a browser.
I dont know if this method will work but try eval
The eval() function evaluates and/or executes a string of JavaScript code.
First, eval() determines if the argument is a valid string, then eval() parses the string looking for JavaScript code. If it finds any JavaScript code, it will be executed.
Syntax
eval(string)
|