Skip to content

Instantly share code, notes, and snippets.

@avand
Created October 7, 2016 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avand/a300b1a6b64aa9fd22a360ad3d8431f8 to your computer and use it in GitHub Desktop.
Save avand/a300b1a6b64aa9fd22a360ad3d8431f8 to your computer and use it in GitHub Desktop.
$.get("http://omdbapi.com/?i=tt0103639", displayResults);
function displayResults(results) {
console.log(results.Title);
console.log(results.Year);
console.log(results.Rated);
console.log(results.Runtime);
console.log(results.Plot);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment