Created
October 2, 2012 07:40
-
-
Save tanaka51/3817094 to your computer and use it in GitHub Desktop.
Getting emoji code from using on http://www.emoji-cheat-sheet.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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