Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-16-2007, 02:03 AM   PM User | #1
NewbNeedHelp
New Coder

 
Join Date: Jan 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
NewbNeedHelp is an unknown quantity at this point
Link that Changes Based on Date

I'm trying to build a link on my site that will link to a different page based on what month it is. This is for people to access a monthly calendar. The idea is that the user can click on the "Calendar" link and have it automatically direct them to that months calendar page. Each month will be on a different page. I have almost no experience with Javascript so the following code is my compilation of various sources on the internet. Any help getting this to work would be much apprectiated.

This is located in the "head" section of my page
Code:
<script type="text/javascript">

var d=new Date()

var month=new Array(12)
month[0]="january.htm"
month[1]="february.htm"
month[2]="march.htm"
month[3]="april.htm"
month[4]="may.htm"
month[5]="june.htm"
month[6]="july.htm"
month[7]="august.htm"
month[8]="september.htm"
month[9]="october.htm"
month[10]="november.htm"
month[11]="december.htm"
</script>
and here is where I'm trying to put the link
Code:
<ul id="nav">
	  	  <li id="t-home"><a href="home.htm">Home</a></li>
		  <li id="t-about"><a href="about.htm">FIT Ultimate</a></li>
		  <li id="t-news"><a href="news.htm">News</a></li>
	    	  <li id="t-photos"><a href="photos.htm">Photos</a></li>
		  <li id="t-roster"><a href="roster.htm">Roster</a></li>
          <script type="text/javascript">document.write("<li id="t-calendar"><a href="calendar/"+month+"">Calendar</a></li>")</script>
      	</ul>
Thanks!
NewbNeedHelp is offline   Reply With Quote
Old 11-16-2007, 08:22 AM   PM User | #2
Philip M
Supreme Master coder!

 
Philip M's Avatar
 
Join Date: Jun 2002
Location: London, England
Posts: 17,037
Thanks: 197
Thanked 2,411 Times in 2,389 Posts
Philip M has a spectacular aura aboutPhilip M has a spectacular aura aboutPhilip M has a spectacular aura about
Try this:-

<script type="text/javascript">

var d = new Date()
var mm = d.getMonth();

var month=new Array(12)
month[0]="january.htm"
month[1]="february.htm"
month[2]="march.htm"
month[3]="april.htm"
month[4]="may.htm"
month[5]="june.htm"
month[6]="july.htm"
month[7]="august.htm"
month[8]="september.htm"
month[9]="october.htm"
month[10]="november.htm"
month[11]="december.htm"

</script>

<ul id="nav">
<li id="t-home"><a href="home.htm">Home</a></li>
<li id="t-about"><a href="about.htm">FIT Ultimate</a></li>
<li id="t-news"><a href="news.htm">News</a></li>
<li id="t-photos"><a href="photos.htm">Photos</a></li>
<li id="t-roster"><a href="roster.htm">Roster</a></li>

<script type = "text/javascript">
document.write("<br><br><a href=month[mm]>Calendar</a>")
</script>

It is your responsibility to die() if necessary….. - PHP Manual
Philip M is offline   Reply With Quote
Old 11-16-2007, 10:08 AM   PM User | #3
shyam
Senior Coder

 
shyam's Avatar
 
Join Date: Jul 2005
Posts: 1,563
Thanks: 2
Thanked 163 Times in 160 Posts
shyam will become famous soon enough
Quote:
Originally Posted by Philip M View Post
Code:
document.write("<br><br><a href=month[mm]>Calendar</a>")
haste makes waste thats gotta be

Code:
document.write("<br><br><a href='" + month[mm] + "'>Calendar</a>")
__________________
You never have to change anything you got up in the middle of the night to write. -- Saul Bellow
shyam is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:55 AM.


Advertisement
Log in to turn off these ads.