Comment puis-je ajouter le texte d'un DIV à un textarea ?
Je l'ai maintenant :
$('.oquote').click(function() {
$('#replyBox').slideDown('slow', function() {
var quote = $('.container').text();
$('#replyBox').val($('#replyBox').val()+quote);
// Animation complete.
});
});