What I want to do is get a thumbnail of a Vimeo image by capturing the json data returned by the request. I cannot use jquery because the javascript file is a small remote file that the user invokes, and jquery will increase its size many times.
I looked and everything seems to be talking about jquery or getting it in another language (e.g. php).
I found that I need to do this so far:
var script = document.createElement('script'); script.src = theUrlToMakeTheRequest; document.getElementsByTagName('head')[0].appendChild(script);
I am not sure what I need to make a callback and not sure what I need to do in order to use the URL that is being added.
qitch source share