childNodes[] not working in IE9 as in IE7 and 8
问题 I have some code that works in IE7 and 8 but not in 9 var table = document.getElementById('RadGrid_ctl01').childNodes[2]; which doesn't work in IE9, now I did read that IE9 count white spaces etc and therefore the index won't be the same as in IE7 and IE8 so I debugged and found same values when I changed index from 2 to 4 like so: var table = document.getElementById('RadGrid_ctl01').childNodes[4]; However when I later on try to access the table object with this code var editor = table