How could you implement the emoji library below in Bubble

How could you implement the emoji library below in Bubble.

Have to create a plugin?

I tried to implement with the code below with the HTML element, but the icon to select the emoticons does not appear.

$ (document) .ready (function () { $ ("# emojionearea1"). emojioneArea ({

pickerPosition: “right”,
tonesStyle: “bullet”,
events: {
keyup: function (editor, event) {
console.log (editor.html ());
console.log (this.getText ());
}
}
});
});

It should work as in the link below:
https://jsfiddle.net/ukLaz8cm/6/

1 Like
1 Like