We\'re looking for ways to create a DOM document in javascript from a string, but without using Jquery. Is there a way to do so? [I would assume so, since J
https://developer.mozilla.org/en-US/docs/Web/API/DOMParser
var parser = new DOMParser(); var doc = parser.parseFromString("", "text/html");
(the resulting doc variable is a documentFragment Object).
doc