<html>
<head>
<style type="text/css">
td, th { width: 100px; }
</style>
<script language="javascript">
function AlternateColors(tblObj, colorStr) {
if (!tblObj) { return; }
var colors=colorStr.split(',')
var cnt =1;
for (var trs=0; trs < tblObj.rows.length; trs++) {
trObj = tblObj.rows[trs];
trObj.style.backgroundColo
cnt++;
if (cnt > 2) { cnt = 1; }
}
}
</script>
</head>
<body onload="AlternateColors(do
<div style="width:500;">
<table id="headertable" border="1">
<tr style="background-color: #4499dd;">
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</table>
</div>
<div style="width: 520; height: 100px; overflow: scroll;">
<table id="datatable" border="1">
<tr>
<td>Value 1 1</td>
<td>Value 1 2</td>
<td>Value 1 3</td>
<td>Value 1 4</tD>
<td>Value 1 5</td>
</tr>
<tr>
<td>Value 2 1</td>
<td>Value 2 2</td>
<td>Value 2 3</td>
<td>Value 2 4</tD>
<td>Value 2 5</td>
</tr>
<tr>
<td>Value 3 1</td>
<td>Value 3 2</td>
<td>Value 3 3</td>
<td>Value 3 4</tD>
<td>Value 3 5</td>
</tr>
<tr>
<td>Value 4 1</td>
<td>Value 4 2</td>
<td>Value 4 3</td>
<td>Value 4 4</tD>
<td>Value 4 5</td>
</tr>
</table>
</div>
</body>
</html>
Main Topics
Browse All Topics





by: BadotzPosted on 2007-03-23 at 11:49:27ID: 18782129
Should be recent examples here at EE - tried a search?