Is creating a DocumentFragment, the same as creating a $('<div/>')
?
E.g.:
var fragment = $(document.createDocumentFragment());
vs
var detached = $('<div/>');
I'm unsure about the advantages of using a DocumentFragment like that when detached elements seem very similar.