Acrescentando grande bloco de html com append ()

Estou tentando acrescentar um grande bloco de texto usando o append () do jquery.

$('#add_contact_btn').click(function(event) {
    event.preventDefault();

    var large = '<div class="accordian_container"><a href="#" class="accordian_trigger"><h4>Co-Borrower Information</h4></a><hr/><div class="accordian_item" id="accord_item_2"><label> First Name</label><br/><input type="text"/><br/><label>Middle Name</label><br/>
            <input type="text"/><br/>
            <label>Last Name</label><br/>
            <input type="text" /><br/>
            <label>Home Number</label><br/>
            <input type="text"/><br>
            <label>Work Number</label><br/>
            <input type="text"/><br>
            <label>Cell Number</label><br/>
            <input type="text"/><br>
            </div>
            </div>';

    $('#accordion_container').append(large);



});

Não parece estar funcionando e depois de olhar a documentação para append (), não consigo descobrir por que - alguma idéia? É a grande quantidade de HTML que estou tentando anexar?

questionAnswers(11)

yourAnswerToTheQuestion