Advertisement
Advertisement
| 04.02.2008 at 12:02PM PDT, ID: 23290488 |
|
[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 |
| 04.02.2008 at 12:21PM PDT, ID: 21266441 |
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: |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript"><!--
window.onload=deckerize;
function deckerize()
{
var data= Array("a","b","c","d");
makeDeck(data,5,'container');
}
function makeDeck( data,offset,target)
{
var p = document.getElementById(target);
for( var i=0; i < data.length; ++i)
{
var d = document.createElement("div");
d.style.position="absolute";
d.style.top = -1*i*offset + "px";
d.style.left = i*offset + "px";
d.style.backgroundColor="khaki";
d.style.padding="1px";
d.style.border="1px solid black";
d.innerHTML=data[i];
//if you want the first div at the bottom, get rid of "-1*"
d.style.zIndex=-1*i;
p.appendChild(d);
}
}
//--></script>
</head>
<body>
<div id="container" style="position:absolute; top: 10em;left:10em;"></div>
</body>
</html>
|
| 04.02.2008 at 12:32PM PDT, ID: 21266544 |
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: |
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function body_onLoad() {
for (var i = 1; i <= 56; i++) {
var oDiv = document.createElement('div')
oDiv.style.left=(56-i)*3
oDiv.style.top=(56-i)*3
oDiv.style.width=25
oDiv.style.height=25
oDiv.style.zIndex=i
oDiv.style.border="1px solid #000000"
oDiv.style.position="absolute"
oDiv.id="div"+i.toString()
oDiv.onclick= function(){this.style.zIndex=0}
oBody.appendChild(oDiv)
}
}
</script>
</head>
<body onLoad="body_onLoad();">
<div id="oBody">
</div>
</body>
</html>
|
| 04.02.2008 at 11:48PM PDT, ID: 21270150 |