/    Sign up×
Community /Pin to ProfileBookmark

I’m trying to create a digital calander. Now I have found some script put it’s not quite qhat I’m looking for.

Can someone help me find the information I need to make this calender. I’m not really a webwizard put can often manage with a little copy pasting.

What am I looking for:

I want to make 12 html files. Every month one of these twelve files is loaded into the page.

For instance. I make a page that I name januari.htm. In januari the script shows this page to people who visit my site.

I don’t think this is a really difficult script to write. But it is for someone with no experience.

Thanks for your help

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@jaegernautDec 08.2003 — I don't know if this is necessarily the best way to go about it, as I'm fairly new to Javascript as well, but this seems to work:

<script language="JavaScript">

var rightNow = new Date();

var calendar = new Array()

calendar[0] = "january.htm"

calendar[1] = "february.htm"

calendar[2] = "march.htm"

calendar[3] = "april.htm"

calendar[4] = "may.htm"

calendar[5] = "june.htm"

calendar[6] = "july.htm"

calendar[7] = "august.htm"

calendar[8] = "september.htm"

calendar[9] = "october.htm"

calendar[10] = "november.htm"

calendar[11] = "december.htm"

self.location.href = calendar[rightNow.getMonth()];

</script>
×

Success!

Help @pigi spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...