Bug Tracker

Changeset 4251 for trunk/jquery/src

Show
Ignore:
Timestamp:
12/20/07 13:36:56 (1 year ago)
Author:
jeresig
Message:

Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have their events cloned by default.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/core.js

    r4236 r4251  
    499499            jQuery.each(elems, function(){ 
    500500                var elem = clone ? 
    501                     this.cloneNode( true ) : 
     501                    jQuery( this ).clone( true )[0] : 
    502502                    this; 
    503503