[visualization-api] Re: Invalid 2D Array in IE

2012-11-26 Thread Mike H
Ugh, silly PHP, thanks for pointing that out! Attempted to implode the comma, or strip the last comma, but instead re-did the whole array and now it works go away trailing commas! Thanks!! On Friday, November 23, 2012 8:54:56 PM UTC-7, asgallant wrote: You get that error because you have an

[visualization-api] Re: Invalid 2D Array in IE

2012-11-23 Thread Mike H
Sorry, let me rephrase this. The page presents just a white page when viewed in IE. In Chrome and Firefox it presents the world map with associated colours that I wanted based upon amount of hits. When debugging in IE9, I get the error stating Invalid 2D Array On Friday, November 23, 2012

[visualization-api] Re: Invalid 2D Array in IE

2012-11-23 Thread asgallant
You get that error because you have an errant comma hanging out at the end of your data array, which is technically invalid javascript, and will IE will throw a tantrum if you give it one: ['Hong Kong', 2], // ---this comma is naughty and has to go On Friday, November 23, 2012 4:32:48 PM