On Mar 26, 3:27 pm, Chris <[email protected]> wrote: > > Correct. After much trial and error IE7 is happy if I remove the > opening and closing form tags: > > <form name="form" id="form"> > ... > </form> > > I haven't the first clue why it doesn't like them, fortunately the > JumpMenu elements that the form contained don't require the form tags > to be present.
You can't nest your <form id="form"> inside your <form id="form2">. That's actually an HTML standard which IE follows! What you're doing is adding your <select> field to the existing form, so you don't really want to nest forms, anyway. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
