JSFiddle - React, Tailwind, and code Playground
by bladnman
JavaScript
function getPhoto() {
$.ajax({
url: "http://api.flickr.com/services/rest/?method=flickr.interestingness.getList&format=json&api_key=fbfe07eb3cc28814df5bbc0313cdd521",
dataType: "jsonp",
jsonp: 'jsoncallback',
success: function(data) {
alert(data);
}
});
}
getPhoto();