Version 2.8.2 raise the exception "hasChildNodes() is not a function" at line 745:
while (this.vDiv.hasChildNodes())
this.vDiv.removeChild(this.vDiv.firstChild);
The error is fixed by replacing this with
while (this.vDiv[0].hasChildNodes())
this.vDiv[0].removeChild(this.vDiv[0].firstChild);
Version 2.8.2 raise the exception "hasChildNodes() is not a function" at line 745: while (this.vDiv.hasChildNodes()) this.vDiv.removeChild(this.vDiv.firstChild);
The error is fixed by replacing this with