Need some jquery help copying a DIV into another DIV and hoping that this is possible. I have the following HTML:
-
2020-11-29 01:29
Put this on an event
$(function(){
$('.package').click(function(){
var content = $('.container').html();
$(this).html(content);
});
});