How to add both text and images into textbox

Viewed 109

How do I add both text and images into chat box? I got this question when I thinked of the Facebook chatbox.

3 Answers

In facebook's chatbox, there's no textarea it's a div, also if you are making an input which contains images you could use quill.js

If you use an image inside a text area field, you have to use this:

<p><img src="ENTER URL HERE" height="ENTER HEIGHT HERE" width="ENTER WIDTH HERE"></p>
Related