This inspection reports JavaScript accesses to DOM nodes as text using the
innerHTML property.
Most uses of innerHTML are better performed using explicit
DOM calls such as getElementByID() and
createElement(). Additionally,
innerHTML will not work with XML
DOMs, including DOMs for XHTML if viewed as XML. This can lead to difficult to
diagnose bugs.