Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi there i have a question about dynamically creating a canvas using javascript.

i create a canvas like this:

var canvas = document.createElement('canvas');
canvas.id     = "CursorLayer";
canvas.width  = 1224;
canvas.height = 768;
canvas.style.zIndex   = 8;
canvas.style.position = "absolute";
canvas.style.border   = "1px solid";

but when I try to locate it, I get a null value:

cursorLayer = document.getElementById("CursorLayer");

Am I doing it wrong? Is there a better way to create a canvas using JavaScript?

share|improve this question

1 Answer

up vote 8 down vote accepted

The problem is that you do not insert your canvas element in the document body.

Just do the following:

document.body.appendChild(canvas);

DEMO: http://jsfiddle.net/8DEsJ/

share|improve this answer
5  
or just use document.body.appendChild(canvas) (you don't have to search for it with getElementsByTagName) - it's a property of the document object. – Gerrat May 18 '12 at 12:23
@Gerrat Good catch. Thanks! However, both ways are possible. – VisioN May 18 '12 at 12:25
thanks works great!! only i have to wait 7 min before i can accept your awnser lol xD – Arjen van Heck May 18 '12 at 12:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.