OK, So, I used FireBug to get the InfoWindow bubble and all its
contents. Anyway, still can't get the content DIV to go on top of the
parent Div container. BUT, however, I was able to do something to the
parent container that sits right before the content's DIV so that it
moves the whole content space up by whatever you specify. Here's how
I did it (took my a while):
After setting up the InfowWindow by using "setContent", you have to
add the event listener as follows:
google.maps.event.addListener(infowindow, 'domready', function()
{ var objParent = $("#contentDivContainer").parent();
$(objParent).css("top", "11px");
//$(objParent).css("border", "1px solid gray"); //This is some
other stuff you can do
});
As for the positioning of the parent DIV with respect to the content's
DIV, I haven't figured out why the parent clips the child even if the
child has absolute positioning defined along with the z-Index.
Anyway, the above code works and you can start putting buttons or
whatever alongside the "x" button. Heck, with jQuery, you can even
take out the close button from the InfoWindow. : )
On Sep 21, 7:21 am, mIDO <[email protected]> wrote:
> infowindows are divs... as Chad wrote you, use firebug ;)
>
> On Sep 20, 10:10 pm, Chad Killingsworth
>
>
>
> <[email protected]> wrote:
> > Firebug is your friend:http://getfirebug.com/
>
> > Chad Killingsworth
>
> > On Sep 20, 2:24 pm, CSharp <[email protected]> wrote:
>
> > > This question is for the Google Javascript API team. I just wanted to
> > > find out if the content area of the InfoWindow is an IFrame. The
> > > reason I'm asking is that no matter what I do to try and set the z-
> > > Index to override the InfoWindow's z-Index, the objects or containers
> > > inside the InfoWindow get clipped if I try to place the object(s)
> > > outside the boundaries of the padding within the bubble. I'm trying
> > > to place links alongside the "x" that closes the InfoWindow.- Hide quoted
> > > text -
>
> - Show quoted text -
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.