I have recently been running into alot of my clients coming to me in the last month asking me to update their Copyright on their sites to reflect 2010.

Is it possible to write a small snippet with jQuery that automatically populated the year? When Jan 1st 2011 rolls around, the text would automatically change from 2010 to 2011?

Thanks.

link|improve this question

3  
Do you not use PHP or any server technology? It would be better it dynamic on the server. – Doug Neiner Jan 27 '10 at 15:39
3  
You might want to investigate the legal significance of the year referenced by copyright notices, and the semantics of updating that year simply because a new year has dawned. – Pointy Jan 27 '10 at 15:48
3  
If the copyright notice specifies a year, then it needs to specify the year of first publication, not the current year. Having it auto-update to "now" is a very bad idea as you will end up making an copyright claim. – Quentin Jan 27 '10 at 15:51
Drat, I mean "an incorrect copyright claim" and it is too late to edit it. – Quentin Jan 27 '10 at 16:03
1  
A copyright applies to a creative work. Machines don't do creative work; people do creative work (often with the assistance of machines). Therefore, unless you or somebody else does actual work on the website, there's nothing to copyright this year. Note that IANAL, you haven't mentioned your jurisdiction, and copyright law can get a little arcane. – David Thornley Jan 27 '10 at 16:06
feedback

3 Answers

up vote 3 down vote accepted
$('#spanYear').html(new Date().getFullYear());

The biggest issue being that the client can change the copyright by changing the clock on their own computer ;)

link|improve this answer
feedback

You could do it via js but as David suggests its easy to manipulate from the client side. it would be better to stamp it on the server side either directly on your server via php or some other dynamic language (this would require change file extensions or config though) or by using an ajax call to a dynamic file on your server or a time service that wil return the year or full date which you can parse the year out of.

Actually you could use SSI directives for something this simple... REally old tech but the downsides of parsing .html as .shtml have waaay fewer reprecussions than changing all your file extenstions or parsing .html as php or some other language. Assuming SSI is available on the server a simple:

<!--#config timefmt="%Y" -->
<!--#echo var="DATE_LOCAL" -->

should do the trick after you make the necessary html -> shtml configuration changes (which i beleive can be done in .htaccess via AddHandler or a similar directive).

link|improve this answer
feedback

another possiblity is to make an ajax-call with jQuery to a "time-service" that will return the time/date/year and use that value to update the webpage.

edit: Yahoo has a timeservice

link|improve this answer
unless OP is actually hosting a site a developer.yahoo.com, wouldn't he need to make a padded JSON request to get that through javascript? – David Hedlund Jan 27 '10 at 15:53
Cross-domain AJAX is, without any doubt, the easiest and most reliable way to display the current date on a website! ;) – Jørn Schou-Rode Jan 27 '10 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.