You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had faced the same problem. so i used class in my textarea to over ride the emoji's hidden one with height: auto !important;
Also added <script> // Auto expand the Text Area as content increases $("textarea").each(function () { this.setAttribute("style", "height:" + (this.scrollHeight) + "px;overflow-y:hidden;"); }).on("input", function () { this.style.height = "auto"; this.style.height = (this.scrollHeight) + "px"; }); </script>
can you help me, how to make the textarea elastic from the emoji picker
The text was updated successfully, but these errors were encountered: