After I create the canvas I want using Kinetic, I want to manipulate it in other ways. I can't find out in the documentation the ID of the canvas created by Kinetic. I want to grab it by using getElementById. Thanks for your time.
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.
|
|
Kinetic does not define the Canvas with an ID, unfortunately. Using the "getCanvas" Function might work, but you need to call it from a specific Layer. The best solution for me is to use the id of the div container and call "getElementsByTagName" to reach the Canvas element. But usually you only got one Canvas anyway, so you can just get it like this:
The only problem is that Kinetic creates a separate Canvas element for every Layer, so it´s best to use only one Layer in your projekt or you have to browse through them all:
|
||||
|
|
|
Would using Additionally, I'm not sure if it's the same idea, but you might check out this question. |
|||
|
|