div自体を削除せずに、2つのdiv要素からコンテンツを削除しようとしています。
<div id='test'>
content I want to remove
<div id='childDiv'>
content I want to remove
</div>
</div>
childDivとtestdivを保持したいのですが、それらの内容を削除します。それ、どうやったら出来るの?
$('#test').empty()
も削除されchildDiv
ます。