I've been searching the docs for YUI3, but I cannot seem to figure out how to create a document fragment. Should I just use the document object itself? I would like to treat it as a YUI Node object.
|
feedback
|
|
If you want to create a new empty docfrag, this should work:
| |||
|
feedback
|
|
I'm pretty sure you're looking for this the NodeList.toFrag() method. The toFrag source code is here and the underlying _nl2frag (NodeList to Frag) code is here. I haven't used it myself and didn't find examples, but it looks pretty straight forward. I assume you would just appendChild it into another node. | |||||
feedback
|
|
I think this is equivalent to Luke's answer (I just find it a little more readable)
| |||
|
feedback
|
Would work as well. Y.Node.create can do just about anything. Recently ran into this issue with very new chrome versions, easy work around, however: | |||
|
feedback
|