Skip to content

Instantly share code, notes, and snippets.

View jpfritz's full-sized avatar

Johannes Neukamm jpfritz

View GitHub Profile
var data = [];
$(".ti__details").each(function(i){
var artist = $(this).find(".ti__artist meta").attr("content");
var title = $(this).find(".ti__title").attr("content");
var format = artist + " - " + title;
var deezer = 'http://www.deezer.com/search/'+ encodeURI(artist + " " + title);
var item = new Object;
console.groupCollapsed(format);
console.log(deezer);
console.groupEnd();