TandemTables Forum

Full Version: Add Copyright Code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here's what I use. I put this at the bottom of most of my pages. This particular script keeps changing the copyright date to the current year, automatically. So you never have to touch this code script again.

<script type="text/javascript">
copyright=new Date();
update=copyright.getFullYear();
document.write("Copyright © 2020-"+ update + " All rights reserved.");
</script>

When this code is installed on your pages, next year the date will automatically change to 2021. And so on, each year.
Reference URL's