Handlebars inject into DOM
Inject HTML into DOM
Plain JavaScript
document.getElementById('result').innerHTML = html;
jQuery
$("#result").html(html);
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Inject HTML into DOM
Plain JavaScript
document.getElementById('result').innerHTML = html;
jQuery
$("#result").html(html);