I am having a bit of a battle with something that seems simple. I have a [javascript] string that has DOM elements in it and would like to open a new window (window.open()?) and
Yes it's possible...
var wnd = window.open("about:blank", "", "_blank"); wnd.document.write(html);
That should do the trick.