My question is regarding having 2 divs both having 85% height and 100% width, but only displaying one at a time. As it is now the second div is displaying strangely.
Have a look here and choose (menuslider->choose "graf" under visa.) There you will see that the second div is not having the width 100% and 85% height, can I solve this in an easy way?
Here is the HTML:
<div id="mainContent">
<div id="googleMap"></div>
<div id="GraphWindow">dw
<iframe src="prototype.html" frameborder="" name="" width="" height="" scrolling="no"> Sorry your browser does not support frames or is currently not set to accept them.</iframe>
</div>
</div>
Here is the CSS:
html {height:100%}
body {height:100%;margin:0;padding:0}
#mainContent{
height:85%;
width:100%;
margin-left: auto ;
margin-right: auto ;
}
#graphWindow{
height:85%;
width:100%;
margin-left: auto ;
margin-right: auto ;
}
#googleMap {
height:85%;
width:100%;
margin-left: auto ;
margin-right: auto ;
}
Here is the javascript showing or hiding the graph:
function selectMainView(){
if(document.details.title.value == "map"){
document.getElementById("googleMap").style.display = "block";
document.getElementById("GraphWindow").style.display = "none";
}
else{
document.getElementById("googleMap").style.display = "none";
document.getElementById("GraphWindow").style.display = "block";
}
}
GraphWindowwhen I click Graph. So what is problem? – Fahim Parkar Dec 16 '12 at 6:32