campo div localstorage salvo
by thvinic
HTML
<div id="edicao1" contenteditable="true"></div>
<div id="edicao2" contenteditable="true"></div>
JavaScript
document.getElementById('edicao1').innerHTML = localStorage['title'] || 'por'; // default text
document.getElementById('edicao2').innerHTML = localStorage['text'] || 'seu nome'; // default text
setInterval(function() { // fuction that is saving the innerHTML of the div
localStorage['title'] = document.getElementById('edicao1').innerHTML; // heading div
localStorage['text'] = document.getElementById('edicao2').innerHTML; // content div
}, 1000);