JoyPixels Labs

version 8.0

Live Preview Box

Start typing shortnames (:smile:, :blush:, :heart:, etc.) or entering native emojis from a compatible device.

Input:

Output:

Required extras

To get this example working correctly we needed to include a few extra pieces, including:

jQuery Snippet:

<script type="text/javascript">
  $(document).ready(function() {
    $("#inputText").on('keyup change input',function(e) {
      var source = $('#inputText').val();
      var preview = joypixels.toImage(source);
      $('#outputText').html(preview);
    });
  });
</script>