TandemTables Forum
Add Copyright Code - Printable Version

+- TandemTables Forum (http://tandemtables.com/forum)
+-- Forum: Tandem Trends (/forumdisplay.php?fid=1)
+--- Forum: Code (/forumdisplay.php?fid=3)
+--- Thread: Add Copyright Code (/showthread.php?tid=19034)



Add Copyright Code - tonebytone - 02-15-2020 01:45 PM

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.