I have the following code in a function:
this.HtmlRef = document.createElement( "canvas" );
if (!this.HtmlRef)
{
return false;
}
this.HtmlRef.appendChild( document.createTextNode( "Your browser doesn't support dynamic graphic drawings (Canvas)!" ) );
var Width = document.createAttribute( "width" );
var Height = document.createAttribute( "height" );
Width.nodeValue = 0;
Height.nodeValue = 0;
this.HtmlRef.setAttribute(Width); /* error */
this.HtmlRef.setAttribute(Height); /* error */
I have also tried to change the names of Width and Height but no success! The whole error message:
Uncaught Error: INVALID_CHARACTER_ERR: DOM Exception 5
Thanks.
The Solution is to use setAttributeNode instead of setAttribute

document.createElement('#document')(or withcreateElementNS); this may occur if you naively try to clone an entireDocumentinstead of the root node. The solution is to start cloning at thenode.documentElement(the root). – Phrogz Nov 2 '11 at 20:21