Created
October 7, 2016 19:00
-
-
Save avand/a300b1a6b64aa9fd22a360ad3d8431f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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