Hi all, I'm getting to grips with Javascript for the first time at the moment and wondered if you'd be able to help me. I have the script below to work out what someone's star sign is from their date of birth, but I'd also like it to generate some text as a kind of horoscope reading. I'm sure it will quite easy but for some reason whatever I try doesn't work!
Any assistance greatly appreciated,
Thanks, T
- Code: Select all
<HEAD>
<script LANGUAGE="Javascript">
function signs() {
var start = 1901, birthyear = document.zodiac.year.value, date=document.zodiac.date.value, month=document.zodiac.month.selectedIndex;
with (document.zodiac.sign){
if (month == 1 && date >=20 || month == 2 && date <=18) {value = "Aquarius";}
if (month == 1 && date > 31) {value = "Invalid Date";}
if (month == 2 && date >=19 || month == 3 && date <=20) {value = "Pisces";}
if (month == 2 && date > 29) {value = "Invalid Date";}
if (month == 3 && date >=21 || month == 4 && date <=19) {value = "Aries";}
if (month == 3 && date > 31) {value = "Invalid Date";}
if (month == 4 && date >=20 || month == 5 && date <=20) {value = "Taurus";}
if (month == 4 && date > 30) {value = "Invalid Date";}
if (month == 5 && date >=21 || month == 6 && date <=21) {value = "Gemini";}
if (month == 5 && date > 31) {value = "Invalid Date";}
if (month == 6 && date >=22 || month == 7 && date <=22) {value = "Cancer";}
if (month == 6 && date > 30) {value = "Invalid Date";}
if (month == 7 && date >=23 || month == 8 && date <=22) {value = "Leo";}
if (month == 7 && date > 31) {value = "Invalid Date";}
if (month == 8 && date >=23 || month == 9 && date <=22) {value = "Virgo";}
if (month == 8 && date > 31) {value = "Invalid Date";}
if (month == 9 && date >=23 || month == 10 && date <=22) {value = "Libra";}
if (month == 9 && date > 30) {value = "Invalid Date";}
if (month == 10 && date >=23 || month == 11 && date <=21) {value = "Scorpio";}
if (month == 10 && date > 31) {value = "Invalid Date";}
if (month == 11 && date >=22 || month == 12 && date <=21) {value = "Sagittarius";}
if (month == 11 && date > 30) {value = "Invalid Date";}
if (month == 12 && date >=22 || month == 1 && date <=19) {value = "Capricorn";}
if (month == 12 && date > 31) {value = "Invalid Date";}
}
}
// End -->
</script>
</HEAD>
<BODY>
<form name="zodiac">
<center>
<table border="5" bordercolor="00000" rules="none" cellspacing="0" cellpadding="4">
<!--DWLayoutTable-->
<tr>
<td height="32">Year</td>
<td width="126"><div align="right">
<input type="text" size="10" name="year" value="Birth Year" onclick=value="">
</div></td>
<td>
</td>
<tr>
<td height="34">Month</td>
<td><div align="right">
<select name="month">
<option value="x">Select Birth Month</option>
<option value="1">January</option>
<option value="2">February</option>
<option value="3">March</option>
<option value="4">April</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div></td>
<td>
</td>
</tr>
<tr>
<td height="34">Day</td>
<td><div align="right"> <input type="text" name="date"value="Day" size="3" onclick=value=""></td>
<td><input type="button" value="Get Reading" onclick="signs()"></div>
</td>
</tr>
<tr>
<td height="32">Zodiac Sign:</td>
<td valign="top"><div align="right">
<input type="text" name="sign" size="12" value="" align="right">
</div></td>
<td width="136"> </td>
</tr>
<tr>
<td height="29">Reading:</td>
<td colspan="2" rowspan="2" valign="top"><TEXTAREA NAME="reading" ROWS=10 COLS=32>
</textarea></td>
</tr>
</table>
</center>
</form>
</body>
</html>