Agregar texto a textarea - Jquery

¿Cómo puedo agregar texto de un DIV a un área de texto?

Tengo esto ahora:

    $('.oquote').click(function() { 
      $('#replyBox').slideDown('slow', function() {
      var quote = $('.container').text();   
         $('#replyBox').val($('#replyBox').val()+quote);   
        // Animation complete.
      });    
    });