[Solved] How to let users enter text into without using input fields? [closed]


place an attribute of contenteditable=”true” like so:

<li contenteditable="true">text to edit</li>

i built kitgui.com from scratch and it uses this technique. i would look at the techniques in UI there so you can get an idea of a good INLINE approach

you need to also have a way for people to save things which is a whole other answer

2

solved How to let users enter text into

  • without using input fields? [closed]