Also give tips as to how to create the links would it just be A etc Also is there any more common JQuery commands that I should learn to begin with. Need pointing in the right direction a little.
Thanks
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
table, th, td {
border: 1px solid black;
}
tr.nice td {
background: #FAFAD2;
}
tr.mouseon td {
background: #1E90FF;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type ="text/javascript">
$("table1 tr).addClass("nice);
$("#table1 th").mouseover(function() { $(this).addClass("mouseon");
$("#table1 th").mouseout(function() { $(this).removeClass("mouseon");
</script>
</head>
<body>
<div id="table1">
<table>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
</tr>
<tr>
<td>A1</td>
<td>B1</td>
</tr>
</table>
</div>
</body>
</html>