Which of HTML tag make value editable? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
- 1

Which of HTML tag make value editable?

Which attribute make aditable constant of HTML

3rd Nov 2017, 8:45 PM
Shahid ali
Shahid ali - avatar
3 Réponses
+ 3
Try: contenteditable="true"
3rd Nov 2017, 9:50 PM
Drax
Drax - avatar
+ 3
Basically, <input> and <textarea> elements (tag) "make value editable" (assuming your meaning is "provide user editable content")... Obviously, notice tant <input> require a 'type' attribute, wich allow different kind of "editable" content or not ('button' is not user editable at all, 'text' provide text input, others are less or more restrictive, but provide text or boolean 'value' attribute/property)
4th Nov 2017, 11:03 AM
visph
visph - avatar
- 1
thank you bro and else another way of editable content
3rd Nov 2017, 10:02 PM
Shahid ali
Shahid ali - avatar