Advertisement
Advertisement
| 07.22.2008 at 07:33PM PDT, ID: 23587206 |
|
[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: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript" src="mootools.v1.11.js"></script>
<script language="javascript" src="nogray_time_picker_min.js"></script>
<script language="javascript">
window.addEvent("domready",
function ()
{
for (var tp = 1; tp <= 2; tp++)
{
var tp2 = new TimePicker('time' + tp + '_picker', 'time' + tp, 'time' + tp + '_toggler',
{
format24:true,
lang:{'am':'AM', 'pm':'PM'},
startTime:{hour:13, minute:0},
onOpen:
function()
{
this.ampm.style.visibility = "hidden";
this.lastHour = this.time.hour;
this.changes = // [hour, lastHour, newHour]
[
[0, 11, 12],
[23, 12, 11],
[11, 0, 23],
[12, 23, 0]
];
if (this.time.hour >= 12)
{
this.options.faceImage = "clock_face2.gif";
if (!(this.faceImage))
{
this.faceImage = this.holder.getElementsByTagName("img")[0];
}
this.faceImage.src = this.options.imagesPath + "/" + this.options.faceImage;
}
},
onChange:
function()
{
for (var index = 0; index < this.changes.length; index++)
{
if (this.time.hour == this.changes[index][0])
{
if (this.lastHour == this.changes[index][1])
{
this.time.hour = this.changes[index][2];
this.updateAmPm();
}
break;
}
}
var faceImage = (this.time.hour < 12) ? "clock_face.gif" : "clock_face2.gif";
if (this.options.faceImage != faceImage)
{
this.options.faceImage = faceImage;
if (!(this.faceImage))
{
this.faceImage = this.holder.getElementsByTagName("img")[0];
}
this.faceImage.src = this.options.imagesPath + "/" + this.options.faceImage;
}
this.lastHour = this.time.hour;
}
}
);
}
}
);
</script>
<style>
*
{
font-family:Arial, Helvetica, sans-serif;
font-size:9pt;
}
.time_picker_div
{
padding:5px;
border:solid #999999 1px;
background:#FFFFFF;
}
</style>
</head>
<body>
<div onselectstart="return false">
<input type="text" name="time1" id="time1" /> <a href="#" id="time1_toggler">Open time picker</a>
<div id="time1_picker" class="time_picker_div"></div>
</div>
<div onselectstart="return false">
<input type="text" name="time2" id="time2" /> <a href="#" id="time2_toggler">Open time picker</a>
<div id="time2_picker" class="time_picker_div"></div>
</div>
</body>
</html>
|