element copy text


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // copy the content from one place to another
  2. $(".bang").click(function(){
  3. $("#lander1").text(this.text);
  4. });

Report this snippet


Comments


You need to login to view comments.