Link to home
Start Free TrialLog in
Avatar of Daniish
DaniishFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Node cannot be inserted at the specified point in the hierarchy" code: "3

Hello,

Every morning i check my site there seems to be some new problem that has crept in. Today, Firebug reports the following:

Node cannot be inserted at the specified point in the hierarchy"  code: "3

Line 0

What's causing this/how can it be fixed?


Many thanks
www.globexposure.net/index.php
Avatar of MMDeveloper
MMDeveloper
Flag of United States of America image

possibly from the invalid HTML in the page...

I'd change

<td width="63%" rowspan="3"><div id="display_map" style="height: 500px; overflow: hidden"></div></td>

to

<td width="63%" rowspan="3"><div id="display_map" style="height: 500px; overflow: hidden"></div>

(removing the orphaned closing TD tag)
Avatar of Daniish

ASKER

I have implemented your suggestion but this has not resolved the problem.
ASKER CERTIFIED SOLUTION
Avatar of MMDeveloper
MMDeveloper
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Daniish

ASKER

Thanks for that MMDeveloper - i have asked the Google Maps API forum if they are aware of this issue:
http://groups.google.com/group/Google-Maps-API/browse_thread/thread/271b2030ff9167b7

Avatar of Daniish

ASKER

Yes - it seems that this problem has been caused by the new release of the API that occured this morning. I have reverted back to version 2.132d and this seems to have fixed the problem for now.


Thanks again for identifying the source of the problem.