Advertisement
Advertisement
| 05.01.2008 at 10:32AM PDT, ID: 23369403 |
|
[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.07.2008 at 10:35PM PDT, ID: 21522524 |
| 05.08.2008 at 07:46AM PDT, ID: 21525193 |
| 05.08.2008 at 09:56AM PDT, ID: 21526445 |
| 05.08.2008 at 12:27PM PDT, ID: 21527694 |
| 05.08.2008 at 12:28PM PDT, ID: 21527702 |
| 05.08.2008 at 09:29PM PDT, ID: 21530396 |
| 05.08.2008 at 09:58PM PDT, ID: 21530462 |
| 05.09.2008 at 06:42AM PDT, ID: 21532667 |
| 05.09.2008 at 06:47AM PDT, ID: 21532714 |
| 05.10.2008 at 08:02AM PDT, ID: 21539277 |
| 05.10.2008 at 08:06AM PDT, ID: 21539285 |
| 05.11.2008 at 06:05AM PDT, ID: 21542365 |
| 05.11.2008 at 02:59PM PDT, ID: 21543642 |
| 05.11.2008 at 09:15PM PDT, ID: 21544632 |
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: |
var currentId = -1;
var tId = "";
function showPrice() {
var sel = document.forms[1].state_id;
var id = sel.options[sel.selectedIndex].value;
if (currentId == id) return; // not changed
currentId = id;
var state = sel.options[sel.selectedIndex].text;
var loc = 'spaPrices.php?state_id='+id;
console.log("The State ID is "+id+" and location is "+loc);
document.getElementById('GroupPrice').innerHTML= 'Loading prices for '+state+'...';
window.if1.location=loc;
}
// USED FOR DISPLAY SPA (CALC-SPA-D)
var currentIdD = -1;
var tIdD = "";
function showPriceD() {
var selD = document.forms[1].state_id;
var idD = selD.value;
//console.log("var idD has the value of"+idD);
if (currentIdD == idD) return; // not changed
currentIdD=idD;
var stateD = selD.options[selD.selectedIndex].text;
var locD = 'spaPricesD.php?state_id='+idD;
console.log("The State ID is "+idD+" and location is "+locD);
document.getElementById('GroupPrice').innerHTML= 'Loading prices for '+stateD+'...';
window.if1.location=locD;
}
|
| 05.11.2008 at 09:26PM PDT, ID: 21544656 |
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: |
function showPrice() {
var sel = document.forms[1].state_id;
var id = sel.options[sel.selectedIndex].value;
if (currentId == id) return; // not changed
currentId = id;
var state = sel.options[sel.selectedIndex].text;
var loc = 'spaPrices.php?state_id='+id;
//console.log("The State ID is "+id+" and location is "+loc);
document.getElementById('GroupPrice').innerHTML= 'Loading prices for '+state+'...';
window.if1.location=loc;
}
// USED FOR DISPLAY SPA
var currentIdD = -1;
var tIdD = "";
function showPriceD() {
var selD = document.forms[1].state_id;
var idD = selD.value;
//console.log("var idD has the value of"+idD);
if (currentIdD == idD) return; // not changed
currentIdD=idD;
var stateD = selD.options[selD.selectedIndex].text;
var locD = 'spaPricesD.php?state_id='+idD;
//console.log("The State ID is "+idD+" and location is "+locD);
document.getElementById('GroupPrice').innerHTML= 'Loading prices for '+stateD+'...';
window.if1.location=locD;
}
|
| 05.11.2008 at 09:31PM PDT, ID: 21544670 |