Hello I am trying to find an alternative to: <body onload="initialize()">
I dont have access to the Body tag as I am using Dotnetnuke CMS and I dont have access to the head section I can only insert directly into the page html module. I have tried inserting each of the following into the page module, so far without success: ------------------------------------------------------------------------------------- <script type="text/javascript"> $(document).ready(function(){ initialize(); }); </script> ----------------------------------------------------------------------- <script language=”javascript”> initialize(); </script> ----------------------------------------------------------------------- <script type="text/javascript"> window.onload = function() { initialize(); } </script> ------------------------------------------------------- Does anybody have a solution? Thanks -- 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 google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.