From ecaa4d4570b05610d542b971fc4278de3c251e79 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Wed, 7 Feb 2007 15:06:49 +0000 Subject: [PATCH] Fix for #910 --- src/jquery/coreTest.js | 7 ++++++- src/jquery/jquery.js | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index da4aca0..1410ece 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -210,7 +210,7 @@ test("wrap(String|Element)", function() { }); test("append(String|Element|Array<Element>|jQuery)", function() { - expect(9); + expect(10); var defaultText = 'Try them out:' var result = $('#first').append('buga'); ok( result.text() == defaultText + 'buga', 'Check if text appending works' ); @@ -239,6 +239,11 @@ test("append(String|Element|Array<Element>|jQuery)", function() { ok( $("#sap").append([]), "Check for appending an empty array." ); ok( $("#sap").append(""), "Check for appending an empty string." ); ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." ); + + reset(); + $("#sap").append(document.getElementById('form')); + ok( $("#sap>form").size() == 1, "Check for appending a form" ); + }); test("appendTo(String|Element|Array<Element>|jQuery)", function() { diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index cdd614c..1eb211a 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1470,7 +1470,7 @@ jQuery.extend({ if ( arg.length === 0 ) return; - if ( arg[0] == undefined ) + if ( arg[0] == undefined || jQuery.nodeName(arg,"form") ) r.push( arg ); else r = jQuery.merge( r, arg ); -- 1.7.10.4