Hi, I'm developing a Google Maps app that uses BlockUI to freeze the map during loading cycles and to display dialogs. I wanted to place a custom menu bar on top of the Google Maps div. Because Google Maps empties "its" div during loading, i had to resort to the following markup structure:
<div id="mapmenu" style="position: absolute; z-index: 9999; width: 390px; top: 103px; right: 0px; height: 55px;"> <!--this div gets positioned over the google maps div --> </div> <div id="google-maps"> <!-- google maps will load here--> </div> My problem: now I can only block the google-maps div, but not the overlapping mapmenu div. How can I get both divs blocked? Franz