jQuery/clone()

解説 要素をコピー

.clone(true)

引数trueでイベントもコピー

sample1
sample1
sample1code
$(function() {   
  $("#sample1box").click( function () {
    $(this).clone().appendTo("#copy");
  });
});
sample2
針葉樹単幹
ツツジ常緑樹生垣
レンギョウ落葉樹株立ち
sampl2code
$(function(){
  $("tr").on({
  	click: function(){
      $(this).clone().appendTo('#tbl');
   },
  	mouseover: function(){
  	  $(this).css("background", "rgba(100,150,200,0.8)");
  	},
  	mouseout: function(){
  	  $(this).css("background", "");
  	}
  });
});