Here's the shortest I can get it:
<script>document.write(new Date().getFullYear())</script>
That will work in all browsers I've run across.
How I got there:
- You can just call
getFullYear directly on the newly-created Date, no need for a variable. new Date().getFullYear() may look a bit odd, but it's reliable: the new Date() part is done first, then the .getFullYear().
- You can drop the
type, because JavaScript is the default; this is even documented as part of the HTML5 specification, which is likely in this case to be writing up what browsers already do.
- You can drop the semicolon at the end for one extra saved character, because JavaScript has "automatic semicolon insertion," a feature I normally despise and rail against, but in this specific use case it should be safe enough.
Off-topic:
You may want to include a noscript in there as well that you update manually once a year, so you don't end up with a gap on browsers/crawlers/etc. that don't have JavaScript enabled.
I assume you already have a starting year in there, e.g. "Copyright © 2008-____" where ____ is what we're filling in.
Ideally, this would be better handled as an offline batch job (sed script on *nix, etc.) once a year, but if you want the JavaScript solution, I think that's as short as it gets. (Now I've gone and tempted fate.)
copyright 2011because it auto-updates in January, then that could be construed to suggest you copied them. An older copyright would seem preferable! If anything, keep a running list,copyright 2009, 2010, 2011or better a range:copyright 2009-2011. – Stephen Dec 30 '10 at 12:38Copyright (C) 2008-<script...– T.J. Crowder Dec 30 '10 at 12:51All right reserved © <script type="text/javascript">var cur = 2011; var year = new Date(); if(cur == year.getFullYear()) year = year.getFullYear(); else year = cur + ' - ' + year.getFullYear(); document.write(year);</script>. – SIFE Nov 17 '12 at 23:31