JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test">hello world</div>
JavaScript
// get html
var html = $('#test')[0].outerHTML;
// set localstorage
localStorage.setItem('htmltest', html);
// test if it works
alert(localStorage.getItem('htmltest'));