I have a google map and is not displayed properly.
To see what I’m talking about check this LINK
and click on the 2nd tab.
The map is inside a jquery accordion and if I remove the accordion the map is displayed properly.
This is the javascript code I’ve used:
<script type="text/javascript">
$(document).ready(function(){
//Hide (Collapse) the toggle containers on load
$(".toggle_container").hide();
//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
$("h2.trigger").click(function(){
$(this).toggleClass("active").next().slideToggle("slow");
return false; //Prevent the browser jump to the link anchor
});
});
maybe try validating your html
what’s going on here?