|
[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. |
||
| Question |
|
[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: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: |
// set avail between to month and year
function setToMonthYear() {
var d=new Date();
var firstValue = $("#availBetweenSlider").slider("values", 0);
var theYear = d.getFullYear();
var theMonth = d.getMonth();
// for (var a=1;a<36;a++) {
// var theMonth[a] = (theMonth + [a]);
// }
var theMonth1 = (d.getMonth() + 1);
var theMonth2 = (d.getMonth() + 2);
var theMonth3 = (d.getMonth() + 3);
var theMonth4 = (d.getMonth() + 4);
var theMonth5 = (d.getMonth() + 5);
var theMonth6 = (d.getMonth() + 6);
var theMonth7 = (d.getMonth() + 7);
var theMonth8 = (d.getMonth() + 8);
var theMonth9 = (d.getMonth() + 9);
var theMonth10 = (d.getMonth() + 10);
var theMonth11 = (d.getMonth() + 11);
var theMonth12 = (d.getMonth() + 12);
var theMonth13 = (d.getMonth() + 13);
var theMonth14 = (d.getMonth() + 14);
var theMonth15 = (d.getMonth() + 15);
var theMonth16 = (d.getMonth() + 16);
var theMonth17 = (d.getMonth() + 17);
var theMonth18 = (d.getMonth() + 18);
var theMonth19 = (d.getMonth() + 19);
var theMonth20 = (d.getMonth() + 20);
var theMonth21 = (d.getMonth() + 21);
var theMonth22 = (d.getMonth() + 22);
var theMonth23 = (d.getMonth() + 23);
var theMonth24 = (d.getMonth() + 24);
var theMonth25 = (d.getMonth() + 25);
var theMonth26 = (d.getMonth() + 26);
var theMonth27 = (d.getMonth() + 27);
var theMonth28 = (d.getMonth() + 28);
var theMonth29 = (d.getMonth() + 29);
var theMonth30 = (d.getMonth() + 30);
var theMonth31 = (d.getMonth() + 31);
var theMonth32 = (d.getMonth() + 32);
var theMonth33 = (d.getMonth() + 33);
var theMonth34 = (d.getMonth() + 34);
var theMonth35 = (d.getMonth() + 35);
var month=new Array(12);
month[0]= 'Jan';
month[1]= 'Feb';
month[2]= 'Mar';
month[3]= 'Apr';
month[4]= 'May';
month[5]= 'Jun';
month[6]= 'Jul';
month[7]= 'Aug';
month[8]= 'Sep';
month[9]= 'Oct';
month[10]= 'Nov';
month[11]= 'Dec';
month[12]= 'Jan';
month[13]= 'Feb';
month[14]= 'Mar';
month[15]= 'Apr';
month[16]= 'May';
month[17]= 'Jun';
month[18]= 'Jul';
month[19]= 'Aug';
month[20]= 'Sep';
month[21]= 'Oct';
month[22]= 'Nov';
month[23]= 'Dec';
month[24]= 'Jan';
month[25]= 'Feb';
month[26]= 'Mar';
month[27]= 'Apr';
month[28]= 'May';
month[29]= 'Jun';
month[30]= 'Jul';
month[31]= 'Aug';
month[32]= 'Sep';
month[33]= 'Oct';
month[34]= 'Nov';
month[35]= 'Dec';
theMonth = month[theMonth];
theMonth1 = month[theMonth1];
theMonth2 = month[theMonth2];
theMonth3 = month[theMonth3];
theMonth4 = month[theMonth4];
theMonth5 = month[theMonth5];
theMonth6 = month[theMonth6];
theMonth7 = month[theMonth7];
theMonth8 = month[theMonth8];
theMonth9 = month[theMonth9];
theMonth10 = month[theMonth10];
theMonth11 = month[theMonth11];
theMonth12 = month[theMonth12];
theMonth13 = month[theMonth13];
theMonth14 = month[theMonth14];
theMonth15 = month[theMonth15];
theMonth16 = month[theMonth16];
theMonth17 = month[theMonth17];
theMonth18 = month[theMonth18];
theMonth19 = month[theMonth19];
theMonth20 = month[theMonth20];
theMonth21 = month[theMonth21];
theMonth22 = month[theMonth22];
theMonth23 = month[theMonth23];
theMonth24 = month[theMonth24];
theMonth25 = month[theMonth25];
theMonth26 = month[theMonth26];
theMonth27 = month[theMonth27];
theMonth28 = month[theMonth28];
theMonth29 = month[theMonth29];
theMonth30 = month[theMonth30];
theMonth31 = month[theMonth31];
theMonth32 = month[theMonth32];
theMonth33 = month[theMonth33];
theMonth34 = month[theMonth34];
theMonth35 = month[theMonth35];
if (firstValue == 0) {$("#minAvailBetweenValue").text(theMonth);}
if (firstValue == 1) {$("#minAvailBetweenValue").text(theMonth1);}
if (firstValue == 2) {$("#minAvailBetweenValue").text(theMonth2);}
if (firstValue == 3) {$("#minAvailBetweenValue").text(theMonth3);}
if (firstValue == 4) {$("#minAvailBetweenValue").text(theMonth4);}
if (firstValue == 5) {$("#minAvailBetweenValue").text(theMonth5);}
if (firstValue == 6) {$("#minAvailBetweenValue").text(theMonth6);}
if (firstValue == 7) {$("#minAvailBetweenValue").text(theMonth7);}
if (firstValue == 8) {$("#minAvailBetweenValue").text(theMonth8);}
if (firstValue == 9) {$("#minAvailBetweenValue").text(theMonth9);}
if (firstValue == 10) {$("#minAvailBetweenValue").text(theMonth10);}
if (firstValue == 11) {$("#minAvailBetweenValue").text(theMonth11);}
if (firstValue == 12) {$("#minAvailBetweenValue").text(theMonth12);}
if (firstValue == 13) {$("#minAvailBetweenValue").text(theMonth13);}
if (firstValue == 14) {$("#minAvailBetweenValue").text(theMonth14);}
if (firstValue == 15) {$("#minAvailBetweenValue").text(theMonth15);}
if (firstValue == 16) {$("#minAvailBetweenValue").text(theMonth16);}
if (firstValue == 17) {$("#minAvailBetweenValue").text(theMonth17);}
if (firstValue == 18) {$("#minAvailBetweenValue").text(theMonth18);}
if (firstValue == 19) {$("#minAvailBetweenValue").text(theMonth19);}
if (firstValue == 20) {$("#minAvailBetweenValue").text(theMonth20);}
if (firstValue == 21) {$("#minAvailBetweenValue").text(theMonth21);}
if (firstValue == 22) {$("#minAvailBetweenValue").text(theMonth22);}
if (firstValue == 23) {$("#minAvailBetweenValue").text(theMonth23);}
if (firstValue == 24) {$("#minAvailBetweenValue").text(theMonth24);}
if (firstValue == 25) {$("#minAvailBetweenValue").text(theMonth25);}
if (firstValue == 26) {$("#minAvailBetweenValue").text(theMonth26);}
if (firstValue == 27) {$("#minAvailBetweenValue").text(theMonth27);}
if (firstValue == 28) {$("#minAvailBetweenValue").text(theMonth28);}
if (firstValue == 29) {$("#minAvailBetweenValue").text(theMonth29);}
if (firstValue == 30) {$("#minAvailBetweenValue").text(theMonth30);}
if (firstValue == 31) {$("#minAvailBetweenValue").text(theMonth31);}
if (firstValue == 32) {$("#minAvailBetweenValue").text(theMonth32);}
if (firstValue == 33) {$("#minAvailBetweenValue").text(theMonth33);}
if (firstValue == 34) {$("#minAvailBetweenValue").text(theMonth34);}
if (firstValue == 35) {$("#minAvailBetweenValue").text(theMonth35);}
}
|
Advertisement
| Hall of Fame |