Lambneck Posted October 17, 2008 Share Posted October 17, 2008 Hello, Is it possible to put the following code in an external file and then include it in an html document? If so how? <form name="where"> <font face="Times New Roman, Times, serif"> <select name="city" size="1" onChange="updateclock(this);"> <option value="" selected>Local time</option> <option value="0">London GMT</option> <option value="1">Rome</option> <option value="7">Bangkok</option> <option value="8">Hong Kong</option> <option value="9">Tokyo</option> <option value="10">Sydney</option> <option value="12">Fiji</option> <option value="-10">Hawaii</option> <option value="-8">San Francisco</option> <option value="-5">New York</option> <option value="-3">Buenos Aires</option> </select> </font> <script language="JavaScript"> /* Drop Down World Clock- By JavaScript Kit (http://www.javascriptkit.com) Portions of code by Kurt @ http://www.btinternet.com/~kurt.grigg/javascript This credit notice must stay intact */ if (document.all||document.getElementById) document.write('<span id="worldclock" style="font:bold 14px Times New Roman;"></span><br />') zone=0; isitlocal=true; ampm=''; function updateclock(z){ zone=z.options[z.selectedIndex].value; isitlocal=(z.options[0].selected)?true:false; } function WorldClock(){ now=new Date(); ofst=now.getTimezoneOffset()/60; secs=now.getSeconds(); sec=-1.57+Math.PI*secs/30; mins=now.getMinutes(); min=-1.57+Math.PI*mins/30; hr=(isitlocal)?now.getHours():(now.getHours() + parseInt(ofst)) + parseInt(zone); hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360; if (hr < 0) hr+=24; if (hr > 23) hr-=24; ampm = (hr > 11)?"PM":"AM"; statusampm = ampm.toLowerCase(); hr2 = hr; if (hr2 == 0) hr2=12; (hr2 < 13)?hr2:hr2 %= 12; if (hr2<10) hr2="0"+hr2 var finaltime=hr2+':'+((mins < 10)?"0"+mins:mins)+':'+((secs < 10)?"0"+secs:secs)+' '+statusampm; if (document.all) worldclock.innerHTML=finaltime else if (document.getElementById) document.getElementById("worldclock").innerHTML=finaltime else if (document.layers){ document.worldclockns.document.worldclockns2.document.write(finaltime) document.worldclockns.document.worldclockns2.document.close() } setTimeout('WorldClock()',1000); } window.onload=WorldClock //--> </script> <!--Place holder for NS4 only--> <ilayer id="worldclockns" width=125 height=35><layer id="worldclockns2" width=100% height=35 left=0 top=0 style="font:bold 14px Times New Roman;"></layer></ilayer> </form> Link to comment https://forums.phpfreaks.com/topic/128825-solved-include-extenal-file/ Share on other sites More sharing options...
web_loone_08 Posted October 17, 2008 Share Posted October 17, 2008 do you want the JS in a separate file or both the JS and the HTML in a separate file? Link to comment https://forums.phpfreaks.com/topic/128825-solved-include-extenal-file/#findComment-667896 Share on other sites More sharing options...
web_loone_08 Posted October 17, 2008 Share Posted October 17, 2008 well...........i'll take a guess; if you want the full page included, you could use a SSI Virtual Include. if you only want to include the JS; just take everything from with inside of the script tags and put in an text file and save it as "something.js" and include it in your pages with an external JS link; like so: <script type="text/javascript" src="something.js"></script> Link to comment https://forums.phpfreaks.com/topic/128825-solved-include-extenal-file/#findComment-667904 Share on other sites More sharing options...
Lambneck Posted October 17, 2008 Author Share Posted October 17, 2008 Hey thanks for the help web_loone_08! Link to comment https://forums.phpfreaks.com/topic/128825-solved-include-extenal-file/#findComment-667938 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.