</object>
</form>
<b id="floatTest">Float test.</b>
+ <iframe id="iframe"></iframe>
</div>
</dl>
});\r
\r
test("append(String|Element|Array<Element>|jQuery)", function() {\r
- expect(11);\r
+ expect(12);\r
var defaultText = 'Try them out:'\r
var result = $('#first').append('<b>buga</b>');\r
ok( result.text() == defaultText + 'buga', 'Check if text appending works' );\r
reset();\r
$("#sap").append(document.getElementById('form'));\r
ok( $("#sap>form").size() == 1, "Check for appending a form" ); // Bug #910\r
+\r
+ reset();\r
+ var pass = true;\r
+ try {\r
+ $( $("iframe")[0].contentWindow.document.body ).append("<div>test</div>");\r
+ } catch(e) {\r
+ pass = false;\r
+ }\r
+\r
+ ok( pass, "Test for appending a DOM node to the contents of an IFrame" );\r
\r
});\r
\r
*/
wrap: function() {
// The elements to wrap the target around
- var a = jQuery.clean(arguments);
+ var a, args = arguments;
// Wrap each of the matched elements individually
return this.each(function(){
+ if ( !a )
+ a = jQuery.clean(args, this.ownerDocument);
+
// Clone the structure that we're using to wrap
var b = a[0].cloneNode(true);
* @cat Core
*/
domManip: function(args, table, dir, fn){
- var clone = this.length > 1;
- var a = jQuery.clean(args);
- if ( dir < 0 )
- a.reverse();
+ var clone = this.length > 1, a;
return this.each(function(){
+ if ( !a ) {
+ a = jQuery.clean(args, this.ownerDocument);
+ if ( dir < 0 )
+ a.reverse();
+ }
+
var obj = this;
if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") )
return ret;
},
- clean: function(a) {
+ clean: function(a, doc) {
var r = [];
+ doc = doc || document;
jQuery.each( a, function(i,arg){
if ( !arg ) return;
// Convert html string into DOM nodes
if ( typeof arg == "string" ) {
// Trim whitespace, otherwise indexOf won't work as expected
- var s = jQuery.trim(arg), div = document.createElement("div"), tb = [];
+ var s = jQuery.trim(arg), div = doc.createElement("div"), tb = [];
var wrap =
// option or optgroup
t( "Attribute Exists", "//a[@title]", ["google"] );\r
t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );\r
t( "Parent Axis", "//p/..", ["main","foo"] );\r
- t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] );\r
- t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] );\r
+ t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","sndp","en","sap"] );\r
+ t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","sndp","en","sap"] );\r
t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] );\r
\r
$("#foo").each(function() {\r