append


          append: function() {
                  //        <summary>
                  //                Append content to the inside of every matched element.
                  //                This operation is similar to doing an appendChild to all the
                  //                specified elements, adding them into the document.
                  //                Part of DOM/Manipulation
                  //        </summary>
                  //        <returns type="jQuery" />
                  //        <param name="content" type="Content">
                  //                Content to append to the target
                  //        </param>
  
                  return this.domManip(arguments, true, function(elem){
                          if (this.nodeType == 1)
                                  this.appendChild( elem );
                  });
          },