|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 01/07/2009 at 09:14AM PST, ID: 24032143 |
|
[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: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<style type="text/css"><!--
#section1,#section2,#section3{color:#dddddd;}
--></style>
<script type="text/javascript"><!--
function handleMembership(val)
{
var sections =new Array('section1','section2','section3');
for( var i=0; i < sections.length; ++i)
{
var s = document.getElementById(sections[i]);
s.style.color="#dddddd";
var elems = s.getElementsByTagName("input");
for( var j=0; j < elems.length; ++j)
{
elems[j].disabled=true;
}
s.style.display="none";
}
switch(parseInt(val,10))
{
case 2:
var s = document.getElementById(sections[2]);
s.style.color="#000000";
var elems = s.getElementsByTagName("input");
for( var i=0; i < elems.length; ++i)
{
elems[i].disabled=false;
}
s.style.display="";
break;
case 1:
var s = document.getElementById(sections[1]);
s.style.color="#000000";
var elems = s.getElementsByTagName("input");
for( var i=0; i < elems.length; ++i)
{
elems[i].disabled=false;
}
s.style.display="";
break;
case 0:
var s = document.getElementById(sections[0])
s.style.color="#000000";
var elems = s.getElementsByTagName("input");
for( var i=0; i < elems.length; ++i)
{
elems[i].disabled=false;
}
s.style.display="";
break;
}
}
//--></script>
</head>
<body>
<form>
<div>
<select name="membership" onchange="handleMembership(this.value)">
<option value="">Make a selection</option>
<option value="0">Bronze</option>
<option value="1">Silver</option>
<option value="2">Gold</option>
</select>
</div>
<fieldset id="section1" style="display:none"><legend>Bronze</legend>
Alpha
<input type="text" name="a" value="" disabled="disabled"/>
</fieldset>
<fieldset id="section2" style="display:none"><legend>Silver</legend>
Beta
<input type="text" name="a" value="" disabled="disabled"/>
</fieldset>
<fieldset id="section3" style="display:none"><legend>Gold</legend>
Gamma
<input type="text" name="a" value="" disabled="disabled"/>
</fieldset>
</form>
</body>
</html>
|
Advertisement