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.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

If you want to create a new empty docfrag, this should work:

var frag = Y.all([]).toFrag();

frag is then a Node instance wrapping the docfrag.

link|improve this answer
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.

link|improve this answer
source code links appear to be broken. yuilibrary.com/yui/docs/api/files/node_js_nodelist.js.html (toFrag) and yuilibrary.com/yui/docs/api/files/dom_js_dom-create.js.html (_nl2frag) work at this time. – Stjepan Rajko Sep 20 '11 at 22:54
Thanks updated links. – mjhm Sep 21 '11 at 14:07
feedback

I think this is equivalent to Luke's answer (I just find it a little more readable)

var frag = Y.one(document.createDocumentFragment());
link|improve this answer
feedback
var docFrag = Y.Node.create('<div id="foo"><p>Bar</p></div>');

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:

http://yuilibrary.com/projects/yui3/ticket/2529368

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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