div の子であるすべてのスパン要素を反復処理しようとしています。
$('#recommendTextArea').children('span').each(function () {
console.log(this.html());
});
ただし、常に次のエラーが発生します。
Uncaught TypeError: Object #<HTMLSpanElement> has no method 'html'
text() に変更してみましたが、うまくいきません