Answers for "javascript copy content of one div to another"

0

javascript copy content of one div to another

let content = $('div#first').html();
$('div#second').html(content);
Posted by: Guest on July-11-2021

Code answers related to "javascript copy content of one div to another"

Code answers related to "Javascript"

Browse Popular Code Answers by Language