clone(true) doesn't copy event handlers on child elements
I expected clone(true) to be deep (ala MooTools); that is, clone all
the child elements exactly, down to events and all. It appears this
isn't the case:
Example:
<div id="outside">
<input id=inside">
</div>
<div>
$('inside').bind('focus', function() { alert('You focussed me!') })
//Result: if you focus on the input, you get an alert
$('outside').clone(true).insertAfter($('outside'));
//Result: the outside div is cloned and there now appears two, side by
side
(focus on the second input)
//Expected result: an alert box
//Actual result: nada