I am trying to insert (append) into an element ... \"body\" specifically.
I am able to do this this way at the moment:
$var = \"some JS stuff\"; $e = $ht
After looking at the source code, I found that the way to go about it is to use
$var = "some JS stuff"; $e = $htmlDOM->find("body", 0); $e->outertext = $e->makeup() . $e->innertext . $var . '</body>';
That is, the undocumented makeup() function will build the tag and any associated text/code.
makeup()