I have a table with many rows of data, and I want to show or hide some of the details on each row based on a checkbox in the first element. For example:
<
$('input[type=checkbox]').click(function() { $(this).closest('td').siblings().find('select,input').hide(); });