Advertisement
Advertisement
| 03.01.2008 at 10:06AM PST, ID: 23206384 |
|
[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 |
| 03.01.2008 at 10:23AM PST, ID: 21022809 |
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: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Show/Hide the div</title>
<script type="text/javascript">
<!--
function changeDiv() {
var div = document.getElementById("hiddenDiv");
div.style.display = (div.style.display=='none')? '':'none';
}
//-->
</script>
</head>
<body bgcolor="Background">
<h3>Hide/Show the div</h3>
<p>Run your mouse over the link below to see the surprise. ©</p>
<a href="#" onmouseover="changeDiv();" onmouseout="changeDiv();">The magic link</a>
<div id="hiddenDiv" style="display: none; background-color: #ffff99; width: 50%;" onmouseover="changeDiv();" onmouseout="changeDiv();">
asdfasdf asdfadsf adsadsfadsf adsf asfd adsf asdf asf adsf asdf asdf asdf asdf asd fasfd asdf asdf asf
asdfasdf ads fasdfasdf ads fasdf asd asdf asdf asdf asdfasdf asdf asd fsadf asdf adsf afds asfd dsaf
adsfa asd fasd fads fas fasdf asf ad fas df
</div>
</body>
</html>
|
| 03.01.2008 at 10:25AM PST, ID: 21022820 |
| 03.01.2008 at 10:28AM PST, ID: 21022833 |
| 03.01.2008 at 10:31AM PST, ID: 21022842 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
<style type="text/css">
#d1 { display: none; }
#d2 { display: none; }
#d3 { display: none; }
</style>
<h1>Click Link Reveils Text</h1>
<a onclick="d1.style.display = 'block'">Click Me</a>
<div id="d1">Some Text</div>
<h1>Reveils Text while hovering over link</h1>
<a onmouseover="d2.style.display = 'block'" onmouseout="d2.style.display='none'">Hover Over Me</a>
<div id="d2">Some Text</div>
<h1>Reveils Text first time hover over link</h1>
<a onmouseover="d3.style.display = 'block'">Hover over me Once</a>
<div id="d3">Some Text</div>
|
| 03.01.2008 at 11:18AM PST, ID: 21023029 |
| 03.01.2008 at 12:01PM PST, ID: 21023241 |