Yes there seems to be a problem. Here is an example what doesn't work in IE7 (don't know about IE6) but works in FF.
row = $('#protoRow'); ... clonedObject = row.clone(true); After the clone() call, working with the object "clonedObject" doesn't work anymore, for example: clonedObject.find('td:eq(0)').attr('id', 'test'+i); This will not work in IE7 after the clone(true), but works in FF It could also be something simpler: clonedObject.html('bla'); clonedObject.attr('id'); //Gives back undefined On Jan 16, 7:16 pm, John M Lauck <[EMAIL PROTECTED]> wrote: > Is there an issue using clone() in IE7? I'm not having trouble in > Firefox 2 but IE7 seems to ignore this method.