I created an Iframe to embed a php page sort of "inside" on Google
Maps, however I seem not to be able to remove the borders around it?
Code to create iframe:
var hyperlink = document.createElement('iframe');
hyperlink.setAttribute('src', 'main.php');
hyperlink.setAttribute("frameborder", "0");
hyperlink.setAttribute("width", "200px");
hyperlink.setAttribute("height", "auto");
hyperlink.setAttribute("marginheight", "0px");
hyperlink.setAttribute("marginwidth", "0px");
hyperlink.setAttribute("scrolling", "no");
I have also tried hyperlink.setAttribute("frameborder","no");
I also have another iframe on the top of my page which doesnt show
with borders.
<iframe style="height:auto;width:100%" scrolling=no marginheight="0px"
marginwidth="0px" frameborder=no src="members.php"></iframe>
Is there another solution in creating the iframe on the map without
borders?
http://www.belizemapia.com/index3.html
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---