IE9 AngularJs issue:Unable to get value of the property 'nodeName': object is null or undefinedundefined

angularjs

Solution

I got this error in IE9 when I accidentally had the following illegal markup.

<table>
   <h3>foo</h3>

    ..... blah

</table>

Maybe run a html lint to make sure you're not violating any rules like that.

Problem

Getting this error when a page is being loaded with angular js in IE9. No issues with Chrom/FF. "Unable to get value of the property 'nodeName': object is null or undefinedundefined" Any pointers would help.I thought this was fixed as part of Angular js 1.0.1 release.

Original source