We have been trying to use the API on our website. So far we have successfully integrated the map, but it now fails in IE since we added a marker and the ability to find directions to or from our office. Works just great in Firefox. If anyone would like to help, I would very much appreciate any suggestions on how to get it working.
Apologies if this is an elementary mistake. I've tried and tried to fix it, but I just don't know enough about the API, HTML and Javascript to get it working. Any help would be much appreciated.
You've placed your <script> inside the <div> which contains the map div. When the script alters the map, it's also changing its containing div -- the one which also contains the script.
IE can't cope with this. Move all your <script> which controls the map outside all of the page structure -- between the last </div> and the urchin scripts should be a good place.