Handlebars inject into DOM
Inject HTML into DOM
Plain JavaScript
document.getElementById('result').innerHTML = html;
jQuery
$("#result").html(html);
Inject HTML into DOM
Plain JavaScript
document.getElementById('result').innerHTML = html;
jQuery
$("#result").html(html);