Advertisement
Advertisement
| 10.02.2008 at 11:04AM PDT, ID: 23782569 |
|
[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: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<style>
.bg {
background-color:red;
}
</style>
<script>
function hiLight(el)
{
var tds = document.getElementsByTagName('TD');
for(i=0; i< tds.length;i++)
{
tds[i].className="";
}
el.className="bg";
}
var dLines=new Array();
dLines["Hello 123"]="1";
dLines["Hi 234"]="2";
dLines["time 12"]="3";
dLines["god 233"]="4";
dLines["boy 12"]="5";
dLines["woman 23"]="6";
dLines["girl 232"]="7";
dLines["man 233"]="8";
dLines["bat 12"]="9";
dLines["rat 23"]="10";
dLines["kite 232"]="11";
dLines["rabbit 233"]="12";
</script>
</head>
<body>
<div id="data" style="border:1px solid blue">
Hello 123
</div>
<table width="500px" border="2" cellpadding="2" >
<tr bgcolor="#99CCFF">
<td id="1" class="bg" onclick="hiLight(this)">hello</td>
<td id="2" onclick="hiLight(this)">hi</td>
<td id="3" onclick="hiLight(this)">time</td>
</tr>
<tr bgcolor="white">
<td id="4" onclick="hiLight(this)">god</td>
<td id="5" onclick="hiLight(this)">boy</td>
<td id="6" onclick="hiLight(this)">woman</td>
</tr>
<tr bgcolor="#99CCFF">
<td id="7" onclick="hiLight(this)">girl</td>
<td id="8" onclick="hiLight(this)">man</td>
<td id="9" onclick="hiLight(this)">bat</td>
</tr>
<tr bgcolor="white">
<td id="10" onclick="hiLight(this)">rat</td>
<td id="11" onclick="hiLight(this)">kite</td>
<td id="12" onclick="hiLight(this)">rabbit</td>
</tr>
</table>
</body>
</html>
|