I'm indexing through a form with something like:
var i = 0;
var s = new String( i+'.prop');
var v = document.formName[s].value;
but what I get is actually:
document.formName[0].value
it appears that my index value "0.prop" is getting cast to an int, only in Internet Explorer (8)
any ideas on how to stop that?
UPDATE: here's a jsfiddle that exhibits the problem. Should return '111', but it returns foo in IE8.