Created
September 12, 2012 15:11
-
-
Save adam8810/3707269 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
url = '/api/movie.json/' + $id; | |
$.ajax({ | |
url: url, | |
success: function(data) | |
{ | |
$(data.cast).each(function($index) | |
{ | |
// pseudocode in php | |
echo "this is the title" . data.name; | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment