On Sep 28, 4:13 am, rocklobster <[email protected]> wrote: > > The problem with moving it is because it is Dreamweaver template code > that is required and that is automatically placed in that location. > Tons of people use Dreamweaver and many use templates to manage their > sites too. That's why this problem seems to be a big issue and to me > like a browser bug since comments should be ignored entirely.
While an HTML parser may ignore them, comments should not be ignored when using the DOM. They can be manipulated, so they must not be ignored; and if some browsers do ignore comments, then *that* is a bug. http://www.w3schools.com/DOM/dom_comment.asp If you need to append an element in a specific place in the DOM, then you need to specify where it's to go as doing that should be cross- browser compatible -- it wouldn't matter whether comments were counted or not. 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 -~----------~----~----~----~------~----~------~--~---
