Im trying to append a large block of text using jquery\'s append().
$(\'#add_contact_btn\').click(function(event) { event.preventDefault(); var large =
You can also clone the div with jQuery and then append the clone--way less messy.
var accordionClone = $('.accordion_container').clone(); $('#accordion_container').append(accordionClone);