deluxmilkman
Programmer
i wrote this to change my embedded swf depending on the location,
but it's not working.
it also disable other javascript on the page.
thanx for your help.
but it's not working.
it also disable other javascript on the page.
HTML:
myDate = new Date();
myTD = myDate.getTimezoneOffset();
if ((myTD >= 180) && (myTD < 480)){
document.mySWF.src="alaska.swf";
}else if((myTD >=1 80) && (myTD < 180)){
document.mySWF.src="england.swf";
}else if((myTD >= -540) && (myTD < -180)){
document.mySWF.src="japan.swf";
}else{
document.mySWF.src="hawai.swf";
}
thanx for your help.