I have created a method to retrieve some data (lat,lon points) and open a window to map them.
function openMapWindow (data) {
alert(data);
var mapForm = document.createElement("form");
mapForm.target = "Map";
mapForm.method = "POST"; // or "post" if appropriate
mapForm.action = "/map.php";
var mapInput = document.createElement("input");
mapInput.type = "text";
mapInput.name = "addrs";
mapInput.value = data;
mapForm.appendChild(mapInput);
document.body.appendChild(mapForm);
window.open("", "Map", "status=0,title=0,height=600,width=800");
mapForm.submit();
}
data variable is populated with the following:

Yet I get the following area on the line:
mapInput.value = data;
ERROR: uncaught exception:
[Exception… “Component returned
failure code: 0x80004005
(NS_ERROR_FAILURE)
[nsIDOMHTMLFormElement.submit]”
nsresult: “0x80004005
(NS_ERROR_FAILURE)” location: “JS
frame :: http://www.xxx.xxx ::
openMapWindow :: line 244″ data: no]Line 0
It has to do with your browser’s popup blocker. If you look closely at the error, it’s describing the submit “button” as the problem, not the mapValue.input line.
The below code is working for me:
http://jsfiddle.net/WDFNL/
I did get the error you’re describing at first, but it had to do with my popup blocker. Once I authorized jsfiddle.net to be allowed popups, it started working.
EDIT
There is an easy way to test for this and alert the user if their popup blocker is disabling the map:
http://jsfiddle.net/WDFNL/1/
Note the
mapvariable. You can test it to see ifwindow.openreturned a window handle, and act accordingly depending on the result.