Skip to content

Instantly share code, notes, and snippets.

View thesmith's full-sized avatar

Ben Smith thesmith

View GitHub Profile
$.getJSON("http://atlasapi.org/2.0/brands.json?playlist.uri=http://www.channel4.com/programmes/4od/highlights&callback=?",
function(data){
console.log(data);
}
);
@thesmith
thesmith / atlasapi-snippet.js
Created July 2, 2010 13:33
Facebook Latest Episode Bookmarklet
var pageTitle = urlencode($('#profile_name').text());
var currentLocation = 'us';
$.getJSON('http://atlasapi.org/2.0/brands.json?title='+pageTitle+'&availableCountries='+currentLocation+'&limit=1&callback=?',
function(data) {
console.log(data);
}
);