View Single Post

Old 11-20-2006, 02:21 AM   #11 (permalink)
Crystatic

Deviant
 
Join Date: Aug 2006
Posts: 44
Crystatic is on a distinguished road
Default

Thanks!

Off topic, I need help with something... I wrote this code, but something is wrong. (Javascript)

Code:
 
<script type="text/javascript">
var d= new Date();
document.write("Welcome to 8! Todays date is: November the " + mytime() + ".")
function mytime()
{
document.write(d.getDate())
}
</script>
The result is this:
19Welcome to 8! Todays date is: November the undefined.

The result I needed was this:
Welcome to 8! Todays date is: November the 19.
Crystatic 15 0FF11|\|3   Reply With Quote