Demo
| ID | Name | Surname | Another Column |
| 1 | Mark Philip | Camilleri | #4122 |
| 2 | Website design | Development | #242 |
| 3 | Malta | Mosta | #322 |
JavaScript:
<script type="text/javascript" src="jquery.targettable.min.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$(".targettable").targetTable({
rowBgColor: "#50b05E", rowTextColor: "#000",
columnBgColor: "#ccc", columnTextColor: "#000",
targetBgColor: "#00cccc", targetTextColor: "#fff"
});
});
</script>
HTML:
<table class="targettable" width="100%" border="1">
<tr>
<th>ID</th
><th>Name</th>
<th>Surname</th>
<th>Another Column</th>
</tr>
<tr>
<td>1</td>
<td>Mark Philip</td>
<td>Camilleri</td>
<td>#4122</td>
</tr>
<tr>
<td>2</td>
<td>Website design</td>
<td>Development</td>
<td>#242</td>
</tr>
<tr>
<td>3</td>
<td>Malta</td>
<td>Mosta</td>
<td>#322</td>
</tr>
</table>