Reputation: 379
I'm using jQuery Emoji Picker to display unicode emojis in textareas and inputs. However, they are not displaying in certain textareas, despite the emoji being placed in the textarea and able to be copied-and-pasted from it. How can I get them to display?
Upvotes: 2
Views: 4173
Reputation: 379
It turns out having font-weight: bold;
prohibited the emojis from displaying. Setting font-weight: normal;
solved it!
Upvotes: 1