Make your Content Editable:
Contenteditable is nice feature added in HTML5. As the name clarify, it allows the user to edit any of the text contained within the element, including its children. There are a variety of uses for something like this, including an app as to-do list, which also takes advantage of local storage.
<ul contenteditable="true"> or <ul contenteditable=true>
<ul contenteditable="true">
<li>First</li>
<li>Second</li>
</ul>
0 Comment(s)