<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script language="javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script language="javascript">
$(document).ready(function() {
$(".topCheckbox").click(function() {
if( $(this).is(":checked") ) {
$(this).parents("tr").find("input[type='checkbox']").each(function() { $(this).attr("checked", true) });
}
else {
$(this).parents("tr").find("input[type='checkbox']").each(function() { $(this).attr("checked", false) });
}
});
});
</script>
</head>
<body>
<table>
<tr><td><input type="checkbox" class="topCheckbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td></tr>
<tr><td><input type="checkbox" class="topCheckbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td></tr>
<tr><td><input type="checkbox" class="topCheckbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td></tr>
<tr><td><input type="checkbox" class="topCheckbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td></tr>
<tr><td><input type="checkbox" class="topCheckbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td><td><input type="checkbox" /></td></tr>
</table>
</body>
</html>
|