PDA

View Full Version : Script Needed!



:Lively
28-11-2005, 06:43 PM
Hi, I need a script that shows a different page after each day.

E.i a timetable, changing who DJ's on that day, then the next day it would display that days dj'ing times.

anyone?

SamMaddock
28-11-2005, 06:48 PM
I have just the script! I use it myself, but it is ok if its one that shows in an iFrame. Aka, if its monday it will show the monday iFrame

:Lively
28-11-2005, 06:56 PM
that wud b great, if you can give it 2 me i'd b veri grateful, plus give ya +rep :p

SamMaddock
28-11-2005, 07:00 PM
Ok, here you go:


<script language="JavaScript1.2">
//Daily iframe content- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, and Terms Of use, visit http://dynamicdrive.com
//This credit MUST stay intact for use
var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1
//Specify IFRAME display attributes
var iframeprops='width=150 height=160 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="1" scrolling="no"'
//Specify 7 URLs to display inside iframe, one for each day of week
var daycontent=new Array()
daycontent[1]="monday.htm" //Monday content
daycontent[2]="tuesday.htm" //Tuesday content
daycontent[3]="wednesday.htm"
daycontent[4]="thursday.htm"
daycontent[5]="friday.htm"
daycontent[6]="saturday.htm"
daycontent[0]="sunday.htm"
//No need to edit after here
if (ie||dom)
document.write('<iframe frameborder=0 id="dynstuff" src="" '+iframeprops+'></iframe>')
var mydate=new Date()
var mytoday=mydate.getDay()
function dayofweek_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=daycontent[mytoday]
}
}
window.onload=dayofweek_iframe
</script>

You will need to edit Saturday, Monday, Tuesday, Wednesday, Thursday, Friday & Sunday .htms to the pages you would like it to sho on them dates.

Flisker
29-11-2005, 08:45 PM
Nice code ;) Well done i might just use it or i might just put it in my brain (Notepad) :P

Want to hide these adverts? Register an account for free!