Advertisement
Advertisement
| 05.14.2008 at 02:50PM PDT, ID: 23403305 |
|
[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! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.15.2008 at 02:53PM PDT, ID: 21578283 |
| 05.15.2008 at 03:37PM PDT, ID: 21578520 |
| 05.15.2008 at 11:36PM PDT, ID: 21580437 |
| 05.16.2008 at 12:56AM PDT, ID: 21580720 |
| 05.16.2008 at 03:06PM PDT, ID: 21586805 |
| 05.17.2008 at 07:12PM PDT, ID: 21591359 |
| 05.18.2008 at 05:05AM PDT, ID: 21592390 |
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: |
<html>
<head>
<script type="text/javascript">
var focus={ x:0, y:0 , table : null}
function focusOn(focus)
{
focus.table.rows[focus.y].cells[focus.x].lastChild.focus();
}
function init()
{
focus.table = document.getElementsByTagName('table')[0];// selecting first table (you could select it by ID for example)
focusOn(focus);
document.body.onkeyup = function(evt)
{
var key = (document.all) ? event.keyCode : evt.which;
switch(key)
{
case 37: // left arrow
focus.x--;
break;
case 38: // up arrow
focus.y--;
break;
case 39: // right arrow
focus.x++;
break;
case 40: // down arrow
focus.y++;
break;
}
if (focus.x<0) { focus.y --; if (focus.y<0) focus.y=focus.table.rows.length-1; focus.x=focus.table.rows[focus.y].cells.length-1; }
if (focus.y<0) { focus.y = focus.table.rows.length-1; }
if (focus.y>=focus.table.rows.length) { focus.y=0;}
if (focus.x>=focus.table.rows[focus.y].cells.length) { focus.x=0; focus.y++; }
if (focus.y>=focus.table.rows.length) { focus.y=0;}
focusOn(focus);
return false;
}
}
</script>
</head>
<body onload="init()">
<table style="border:black solid 1px">
<tr><td> <a href="#"> link </td>
<td> <a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td></tr>
<tr><td> <a href="#"> link </td>
<td> <a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td></tr>
<tr><td> <a href="#"> link </td>
<td> <a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td></tr>
<tr><td> <a href="#"> link </td>
<td> <a href="#"> link </td><td><a href="#"> link </td><td><a href="#"> link </td></tr>
</table>
</body>
</html>
|
| 05.21.2008 at 11:51AM PDT, ID: 21617888 |