Gordon wrote:
Just a quick question, is there a way to quickly create a jQuery
object that contains no elements at all so you can add() them as
needed later in the script?



I suggest (although I've never tested or used it):

var empty = $([]);


Note that $() will include the document element.



--Klaus

Reply via email to