Which is faster,
Using an XMLHTTP Get request and than using eval() for the reponsetext
Using the JSONP technique for loading a script and then evaling the innerHtml of the script.
Dynamically adding a script tag to the head of a document where the javascript object is being assigned to a variable?
My gut tells me this should be option 3, but I am not sure how eval compares with using a script tag. Any thoughts?