D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
sivartravis
Full window
Github gist
Complete contentEditable Inline Editor
<link href='https://fonts.googleapis.com/css?family=Dosis|Rajdhani' rel='stylesheet' type='text/css'> <div id="wrapper"> <section> <h1 class="headline">contentEditable Demonstration</h1> <button id="editBtn" type="button">Edit Document</button> <div id="editDocument"> <h1 id="title">A Nice Heading.</h1> <p>Last Edited by <span id="author">Monty Shokeen</span> </p> <p id="content">You can change the heading, author name and this content itself. Click on Edit Document to start editing. All the editable content is styled differently. The final content is saved in localStorage and is retrieved later when you reload the webpage.</p> </div> </section> </div>