I want to append some html to an empty non null jQuery object only in the loop but it\'s not working unless I create an object and add an html tag during creation. How can I cre
Document Fragments are perfect for this; creates an empty object ready for appending. :)
$(document.createDocumentFragment())