score:2

Accepted answer

my guess is that ie is choking on the trailing commas at the end of your javascript objects:

                    marker: {
                         enabled: false,
                         states: {
                              hover: {
                                 enabled: true,
                                 symbol: 'circle',
                                  radius: 2,
                                 linewidth: 1, <-- ie doesn't like that comma!
                             }
                         }
                     }

remove it and the other ones like it.


Related Query

More Query from same tag