Skip to content

Instantly share code, notes, and snippets.

@tanaka51
Created October 2, 2012 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanaka51/3817176 to your computer and use it in GitHub Desktop.
Save tanaka51/3817176 to your computer and use it in GitHub Desktop.
Getting emoji-code and img from using on http://www.emoji-cheat-sheet.com/
var url = "http://www.emoji-cheat-sheet.com/"
var imgs_code = "";
$('span.emoji').each(function(){
imgs_code = imgs_code + "\n" + url + $(this).data('src') + " - " + $(this).parent().text();
});
alert(imgs_code);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment