JavaScript kopieren Inhalte eines Divs zum anderen

let content = $('div#first').html();
$('div#second').html(content);
Syntax Error