When opening a page with a map in IE6 it may happen that not all buttons are shown; they may be limited to the 3 left ones.

Reason is that the $(document).ready() function executes too early in IE6. For a solution see http://michael.futreal.com/jquery/readyvsload and http://www.davidflanagan.com/javascript5/display.php?n=17-7&f=17/runOnLo....

Comments

jpulles’s picture

Assigned: Unassigned » jpulles

The jquery ready function will be replaced by:

      if (window.addEventListener) {
        window.addEventListener('load', MappingKit.init, false);
      }
      else if (window.attachEvent) {
        window.attachEvent('onload', MappingKit.init);
      }
      else {
        window.onload = MappingKit.init;
      }
jpulles’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.