Menu
  • HOME
  • TAGS

How can I make a span tag un-deletable?

html,html5,deletable

So I figured out the best solution for me, very simple. A content editable div in not needed. Just a a few content editable spans. <div> <span contenteditable="true"> Editable text here. </span> <span contenteditable="false" style="font-weight: bold"> READ ONLY VALUES </span> <span contenteditable="true"> Edit more stuff here </span> </div> ...