techker Posted October 29, 2008 Share Posted October 29, 2008 hey guys i found this code on the net that shows the ctime and the date.. now is it possible to remove the date?or change it to french.. <Body> <Form Name="clock"> <Input Name="display" Size="40" Style="Font-Family:Comic Sans MS;Font-Size:24pt;Color:Blue;Font-Weight:700;Border:Solid 0px; Back-Ground:Transparent"> </Form> </Body> <Script Language="JavaScript"> <!--// function clock() { var now = new Date(); document.clock.display.value = now.toLocaleString(); timerID = setTimeout('clock()', 1000); } window.onLoad = clock(); //--> </Script> Link to comment https://forums.phpfreaks.com/topic/130652-clock/ Share on other sites More sharing options...
webster08 Posted October 30, 2008 Share Posted October 30, 2008 <Body> <Form Name="clock"> <Input Name="display" Size="40" Style="Font-Family:Comic Sans MS;Font-Size:24pt;Color:Blue;Font-Weight:700;Border:Solid 0px; Back-Ground:Transparent"> </Form> </Body> <Script Language="JavaScript"> <!--// function clock() { var now = new Date(); var date = now.toLocaleString().split(" "); document.clock.display.value = date[4] + " " + date[5]; timerID = setTimeout('clock()', 1000); } window.onLoad = clock(); //--> </Script> Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678066 Share on other sites More sharing options...
BoltZ Posted October 30, 2008 Share Posted October 30, 2008 I would change <script language="javascript"> because language = javascript is depreciated. Use <script type="text/javascript'> instead. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678072 Share on other sites More sharing options...
webster08 Posted October 30, 2008 Share Posted October 30, 2008 I would change <script language="javascript"> because language = javascript is depreciated. Use <script type="text/javascript'> instead. yep; i agree, but i was just correcting techker's code example; for the issue at hand. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678080 Share on other sites More sharing options...
BoltZ Posted October 30, 2008 Share Posted October 30, 2008 Ah I see. But you wouldn't imagine the number of people nowadays who don't bother researching depreciated objects/methods in their languages. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678082 Share on other sites More sharing options...
webster08 Posted October 30, 2008 Share Posted October 30, 2008 Ah I see. But you wouldn't imagine the number of people nowadays who don't bother researching depreciated objects/methods in their languages. oh, i'm sure - especially for JS newbies; that is a good tip. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678085 Share on other sites More sharing options...
BoltZ Posted October 30, 2008 Share Posted October 30, 2008 I am starting to learn ajax but I haven't found the time to research the best method for creating an xmlhttprequest object. I do it in a function right now...but that is offtopic. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678086 Share on other sites More sharing options...
webster08 Posted October 30, 2008 Share Posted October 30, 2008 I am starting to learn ajax but I haven't found the time to research the best method for creating an xmlhttprequest object. I do it in a function right now...but that is offtopic. i don't really know what the best is; when i first learned about AJAX, probably 2 years ago - i just did allot of Googling; until i found the method/routine that worked best for me and learned from that. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678089 Share on other sites More sharing options...
techker Posted October 30, 2008 Author Share Posted October 30, 2008 I would change <script language="javascript"> because language = javascript is depreciated. Use <script type="text/javascript'> instead. cool for that.but does any body now how to remove the date? Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678287 Share on other sites More sharing options...
webster08 Posted October 31, 2008 Share Posted October 31, 2008 cool for that.but does any body now how to remove the date? seriously.........? did you even read my original post? i showed you how to remove the date in it. you will have to add the window.onload event and the clock() function to it though; some how it got deleted. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678956 Share on other sites More sharing options...
BoltZ Posted October 31, 2008 Share Posted October 31, 2008 Yea i definitely remember those in your original post...where did they go lol Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678961 Share on other sites More sharing options...
webster08 Posted October 31, 2008 Share Posted October 31, 2008 no idea - must have been the code monster - tomorrow is halloween after all - lol Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678963 Share on other sites More sharing options...
BoltZ Posted October 31, 2008 Share Posted October 31, 2008 I love halloween because my last name is Reese so I get free Reese's candy from this store I know because the owner knows me. I mean I seriously get bags full of them lol Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678964 Share on other sites More sharing options...
webster08 Posted October 31, 2008 Share Posted October 31, 2008 yeah, me too - just lit the jack-o-lantern a few mins ago. have a happy one BoltZ Reese; enjoy those Reese's candies. Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678966 Share on other sites More sharing options...
BoltZ Posted October 31, 2008 Share Posted October 31, 2008 As im sure you are aware my first name isn't Boltz, its Eric. In fact my brother used to go here. Search account gameyin Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678971 Share on other sites More sharing options...
webster08 Posted October 31, 2008 Share Posted October 31, 2008 yeah; i know Eric - it was in good fun - no worries - have a good one Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678984 Share on other sites More sharing options...
BoltZ Posted October 31, 2008 Share Posted October 31, 2008 same, and because of these 3 posts of trolling, I now have reached my 20 posts per day. Ugh Javascript and html/css forums were slow today, and no one replies to my php threads Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-678987 Share on other sites More sharing options...
techker Posted October 31, 2008 Author Share Posted October 31, 2008 thx!! Link to comment https://forums.phpfreaks.com/topic/130652-clock/#findComment-679203 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.