> I've built the info window with two tabs - one with pure dom, and one > using innerHTML. Having done this, I guess I cant tell why the second > works but the first doesn't.
You're creating <select> elements with duplicate id which may cause some browser confusion. I think the main problem is newSelect.onchange = changeUnits(); which will run the function and put the null result into .onchange Perhaps newSelect.onchange = 'changeUnits()'; would work --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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-API?hl=en -~----------~----~----~----~------~----~------~--~---
