Log in

View Full Version : Miscellaneous Hacks - JavaScript: Copyright Year Generation


King Kovifor
01-31-2009, 10:00 PM
Just because a bunch of people wanted me to release this. Here's a little JavaScript I wrote that you can place in your copyright statement to keep your year up to date. Just put it where you want the year to display:

<script type="text/javascript">
d = new Date();
y = d.getFullYear();
document.write(y);
</script>

OR

<script type="text/javascript">d = new Date();y = d.getFullYear();document.write(y);</script>

They both do the same thing, one's just on a single line. :)

A JS file attached just in case you want to keep it as a back up.

Thanks to Gasper for reminding me to put in the text/javascript tag. :)

Also, this works with any version of vBulletin (or should) and can be seen on vB.org.

UncoderMom
02-01-2009, 03:00 PM
*clicks install*

teehee

Lynne
02-01-2009, 03:49 PM
Thanks!

digicom
02-01-2009, 04:07 PM
Thankyou:up:

Paul M
02-01-2009, 04:26 PM
Well, since we are using it here, id better click install. :)

ForumsMods
02-01-2009, 04:29 PM
Installed. ;)
Simple hack, but very useful.

Vaupell
02-01-2009, 04:47 PM
ahh here it was, ;) installed ofc.

King Kovifor
02-01-2009, 04:51 PM
Well, since we are using it here, id better click install. :)

I was actually quite surprised that you used it. :) I'm sure you could have whipped that up quite faster than me (it sadly took me like 5 minutes as my first code failed (document.write(Date.getFullYear()) ;)).

Magnumutz
02-01-2009, 06:34 PM
Thanks dude, installed :D

Ryan Ashbrook
02-01-2009, 07:41 PM
Thanks. :D

-=Sniper=-
02-01-2009, 08:05 PM
I was actually quite surprised that you used it. :) I'm sure you could have whipped that up quite faster than me (it sadly took me like 5 minutes as my first code failed (document.write(Date.getFullYear()) ;)).

nearly there, this would have worked.

document.write((new Date()).getFullYear());

King Kovifor
02-01-2009, 08:10 PM
nearly there, this would have worked.

document.write((new Date()).getFullYear());

Gah. I'm new to JavaScript. And I have to say, it's very low skill. But that totally makes sense. :D

m002.p
02-02-2009, 09:12 PM
Good job here mate. Javascript reminds me of unreal code in games - a mess to understand at the best of times, but very useful too. Compliments PHP nicely.

King Kovifor
02-03-2009, 06:43 PM
Good job here mate. Javascript reminds me of unreal code in games - a mess to understand at the best of times, but very useful too. Compliments PHP nicely.

I am still learning. I got a book but half the time, it's just bad. ;)