choonkeat (owner)

Revisions

gist: 222540 Download_button fork
public
Description:
bookmarklet to show memberships on twitter profile
Public Clone URL: git://gist.github.com/222540.git
Embed All Files: show embed
twitter-member-lists.js #
1
2
3
4
5
6
7
8
/*
bookmark: javascript:void(function(){var%20urls=['http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js','http://gist.github.com/raw/222540/52236ed6fd9f706c7c1f8c654427b53861f21945/twitter-member-lists.js'];for(n%20in%20urls){var%20s=document.createElement('script');s.src=urls[n];document.getElementsByTagName('head')[0].appendChild(s);}}())
*/
jQuery.getJSON(window.location + "/lists/memberships.json?callback=?", function(json) {
  var list_names = jQuery.map(json.lists, function(obj) { return obj.name; });
  jQuery('h2.thumb').after("<code>" + list_names.join(", ") + "</code>");
});