Skip to content

Instantly share code, notes, and snippets.

@labajo
Created March 10, 2013 10:26
Show Gist options
  • Save labajo/5128035 to your computer and use it in GitHub Desktop.
Save labajo/5128035 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Emojis Test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link href="./styles/emojify.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="./js/emojify.min.js"></script>
</head>
<body>
<div class="emojstext">
I'm a loser. :poop::poop::poop:
</div>
<script type="text/javascript">
$(document).ready(function () {
emojify.setConfig({
emoticons_enabled: true,
people_enabled: true,
nature_enabled: true,
objects_enabled: true,
places_enabled: true,
symbols_enabled: true
});
emojify.run();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment