I want to append an object, that was created in a parent window to a child window:
div = document.createElement( "div" );
document.body.appendChild( div );
// Here come div's atts;
render = window.open().document;
render.body.appendChild( div );
but the new DIV is appended only to the child window. If I comment the last line - the div is appended to the parent window. Can that be solved?