vote up 2 vote down star
1

My goal is to submit a form in a new window. I'm using the following code:

var xmlWindow = window.open("getXML.htm");
xmlWindow.document.getElementById("getXML").action = "getData.asp";
xmlWindow.document.getElementById("getXML").method = "post";
xmlWindow.document.getElementById("getXML").innerHTML = "<input type='hidden' name='moduleID' value='ex1'/>";
xmlWindow.document.getElementById("getXML").submit();

This works fine in IE and Firefox, but in chrome the xmlWindow.document.getElementById("getXML") is null. Any suggestions?

for reference here is getXML.htm:

<html>
<head>
    <title>getXML</title>
</head>
<body>
<form id="getXML" name="getXML">
</form>
</body>
</html>
flag

63% accept rate

1 Answer

vote up 1 vote down

You will want to wait for the page to have finished loading (technically you would need this in any browser) -- eg. wait for the onload event to fire before trying to access the document.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.