I think jQuery .clone() does a deep copy and both objects evolve independently. But is it possible to do a shallow copy in the sense that both objects share the same properties and methods so that whenever one changes the other does as well?
I think jQuery .clone() does a deep copy and both objects evolve independently. But
Share
With respect to your comment, this is not possible by just cloning (or whatever) the elements. You would have to set up event handlers and manage the synchronization yourself.