Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery Emoji picker [closed]

I wanted my users to be allowed to insert emojis into a text box. I have searched for a JQuery plugin, which would allow me to give them a picker like the Mac, iOS or Webogram integrated Emojipicker. But I couldn't find a proper one, which sorted all icons and displayed them?

Is there any possibility to do this?

Mac Emojipicker:

enter image description here

like image 883
Deproblemify Avatar asked Jul 28 '14 21:07

Deproblemify


Video Answer


2 Answers

After the first time I asked this question, I only got down votes. So I thought, probably there isn't any other plugin out there and I developed my own based on Emojiarea (which also Webogram uses). Because I didn't copy the code from Webogram, I didn't sort the icons yet but my solution works how I excepted it.

The custom plugin can be found on my Github Account https://github.com/GittiHab/jquery-emojiarea.

I hope this helps others with a similar problem and takes away some work.

like image 196
Deproblemify Avatar answered Oct 07 '22 00:10

Deproblemify


Thanks for your work @JSHelp.

I've found another one here:
https://github.com/wedgies/jquery-emoji-picker

Example usage:

Initialize the jQuery Emoji Picker by calling emojiPicker on an input element (...):

$('.question').emojiPicker({   height: '300px',   width: '450px' }); 
like image 31
therealmarv Avatar answered Oct 06 '22 22:10

therealmarv