Footer Copyright with year by js

I am inserting manually a script in field copyright to get the current year published automatically.

Maybe you give this field a second option like "Copy right with/without year" or something like this

here is the script I am using:
<script language="javascript" type="text/javascript">   var d = new Date();   document.write("Copyright © "+(d.getYear()+1900)+"  *** Website Name *** All rights reserved"); </script>

What do you think about this?

Comments

Sign In or Register to comment.