I am trying to create a button that will print a google map embedded on a webpage

see code:

function print(){


var contents = window.opener.document.getElementById("map_canvas"); 
document.write(contents.innerHTML); 
window.print(); 

}

this is the div that holds my map

<div id="map_canvas" style="width:800px; height:500px;"></div>  

and this is the print button

<input type="button" value="Print" onclick="print()">

When I click the print button I get an error "window.opener is null." What is the correct code to print the map?

link|improve this question

65% accept rate
feedback

1 Answer

Check if DIV that contain map on primary window have div with id="map_canvas"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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