Using document.write works fine, but I want to write to an anchor tag in the child popup window. I tried:
mychildWin.document.getElementById("childAnchor").value = "Hello";
which fails and when I popup an alert(mychildWin.document.links[0].value);
I get null. But the popup has this element.
When I use mychildWin.document.write("hello"); the hello appears fine.
What am I missing here?



