Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make a span item editable? [duplicate]

Tags:

html

css

I am making a simple web app, in one part of it I want the user to be able to edit the text put up by me on the screen. The text is currently contained in a <span> element.

How is it possible?

like image 303
coder Avatar asked Oct 30 '25 22:10

coder


1 Answers

Just set contenteditable attribute as true

<span contenteditable="true">edit</span>

or simply add contenteditable only

<span contenteditable>edit</span>

Fiddle Demo

like image 60
Pranav C Balan Avatar answered Nov 01 '25 13:11

Pranav C Balan