Advertisement
Advertisement
| 11.15.2007 at 02:40PM PST, ID: 22964469 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html>
<head>
<!--
I've tried adding a style specific for the cells named stodd but they do not get styled.
-->
<link rel="stylesheet" type="text/css" href="nhb.css" />
</style>
<script type="text/javascript">
function addRow()
{
if (!document.getElementsByTagName)
return;
// Get the TBody element of the table
tabBody = document.getElementsByTagName("TBODY").item(0);
// Create an empty Row
row = document.createElement("TR");
// Create base TD Cells
cell1 = document.createElement("TD");
cell2 = document.createElement("TD");
// Even setting hte ID will not change the style of the created Cells.
// Tried setting the style.border, on both the TD and the TR..
// Still no way to get these styled...
//cell1.id = "stodd";
//cell2.id = "stodd";
cell1.align = "center";
cell2.align = "center";
// Create Edits to go into the TD Cells
edit1 = document.createElement("INPUT");
edit2 = document.createElement("INPUT");
edit1.size = 40;
edit1.type = "text";
edit2.size = 3;
edit2.type = "text";
edit1.name = "name[]";
edit2.name = "jersey[]";
// Append the Edits created
cell1.appendChild(edit1);
cell2.appendChild(edit2);
// Append the Cells created
row.appendChild(cell1);
row.appendChild(cell2);
// Append the Row created
tabBody.appendChild(row);
// Set focus to the Edit that was created.
edit1.focus();
}
</script>
</head>
<body>
<form action="tabletestpost.php" method="post">
<table style="border: 1px solid black;" id="playertable">
<th>Player Name</th>
<th>Jersey</th>
<tbody>
</tbody>
</table>
<button onClick="addRow();return false;">Add Row</button><br />
<input type="Submit" Value="Submit">
</form>
</body>
</html>
|