JoeLongstreet
Technical User
Hello, I am brand spanking new to JavaScript and I just wrote my first line of code. I have some experience with actionScript and from what I've looked at so far they seem fairly similar. Anyways, I am making a desktop widget and I need to place the time over an image and change the fonts. Here is the super simple code for the clock:
<script language = "JavaScript">
today = new Date();
document.write(today.getHours() + ":" + today.getMinutes());
</script>
I searched for some help around the internet but I wasn't really sure what this would be called. Any help would be much appreciated.
Thanks,
Joe Longstreet
<script language = "JavaScript">
today = new Date();
document.write(today.getHours() + ":" + today.getMinutes());
</script>
I searched for some help around the internet but I wasn't really sure what this would be called. Any help would be much appreciated.
Thanks,
Joe Longstreet