Skip to content

Instantly share code, notes, and snippets.

@tanaka51
Created October 2, 2012 07:40
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/3817094 to your computer and use it in GitHub Desktop.
Save tanaka51/3817094 to your computer and use it in GitHub Desktop.
Getting emoji code from using on http://www.emoji-cheat-sheet.com/
var emojis = "";
$('span.emoji').each(function(){
emojis = emojis + " " + $(this).parent().text();
});
alert(emojis);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment