「thead」をクリックして「arrow_o」を非表示にしようとしていますが、機能しません。jquerysの「子」はテーブルで機能しませんか?
html
<thead class="thead">
<tr>
<th>
<div class="arrow_o"></div>
</th>
</tr>
</thead>
js
$(document).ready(function() {
$('.thead').click(function() {
$(this).children('.arrow_o').hide();
});
});