Skip to content

Instantly share code, notes, and snippets.

@Bestulo
Created November 22, 2016 10:08
Show Gist options
  • Select an option

  • Save Bestulo/a0f737c1df4f2821f589dee18a013d70 to your computer and use it in GitHub Desktop.

Select an option

Save Bestulo/a0f737c1df4f2821f589dee18a013d70 to your computer and use it in GitHub Desktop.
plugin for LT
$(document).ready(function(){
var $songLink = $('li.song-node-info-album').find('a').attr("href");
var $tabs = $('ul.tabs');
$.ajax({
type: 'GET',
url: $songLink,
success: function(res){
$(res).find('.green_tab').each(function(){
$tabs.append($(this));
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment