Simple Fast jQuery Emoji Parser / Converter Plugin - jQueryEmoji

File Size: 8.81 MB
Views Total: 3502
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Simple Fast jQuery Emoji Parser / Converter Plugin - jQueryEmoji

jQueryEmoji is a simple, fast jQuery emoji parser plugin which converts emoji characters within your text into corresponding icons using Apple, Emoji One, Twemoji, Google and Microsoft emoji images.

Basic usage:

1. To use this plugin, just include the jQueryEmoji.js script after jQuery library and you're ready to go.

<script src="jquery.min.js"></script>
<script src="jQueryEmoji.js"></script>

2. Call the function on target container element where you want to parse and convert the emoji characters.

$('p').Emoji();

3. Specify the path to your emoji images and other useful settings.

$('p').Emoji({
  path: 'img/apple40/',
  class:'emoji',
  ext: 'png',
  alt: true
});

This awesome jQuery plugin is developed by rodrigopolo. For more Advanced Usages, please check the demo page or visit the official website.