Text box similar to Facebook or Stack Exchange for sites

I'm sure you all know what I'm talking about. It looks like a text field and allows you to enter material, and a small slide menu appears (sort of like an intellisense thing - displaying different words that, in her opinion, you are going to type), and when you click on it, or press Enter, it creates a small frame inside the text box with this word inside it. I need to find one of them (or do it myself), and I also need to take these words and some data in Javascript before inserting them into the database. The "Textarea" that I'm talking about, if I lost you, looks something like this:

enter image description here

Does anyone know if there are libraries / plugins etc. that are available? Any help would be greatly appreciated!

Thank:)

+3
3
+2

this is not a text box or input field, Contenteditable allows you to do this.

<div contenteditable="true"><span class="tag">tag1</span></div>

just like an input field that you can write in an extended div.

0
source

All Articles