Hello all,

I've just ran into a curious problem of sort. I'm using MooTools 1.3
and HtmlTable from More 1.3 to create a table of data. I have an
array of values that I push into the table. In Firefox everything
works as expected, regardless of what the array looks like. However,
in Internet Explorer the method only works if there are no decimals
in the array. I tested with MooTools 1.2.5 and More 1.2.5 and the
problem dissapears.

So for example, this works in both IE and FF:
var good = ['An', 'array', 'with', 'strings', 'and', '1', 'integer'];
var t = new HtmlTable();
t.push(good);

This, on the other hand fails with IE, but works fine in FF:
var bad = ['Similar', 'array', 'with', 'strings', 'and', '1.0',
'decimals'];
var t = new HtmlTable($('works'));
t.push(bad);

Any ideas as to what might be going on?

Thanks,
Justin

Reply via email to