Auto Update Copyright Year - Automatically keep your copyright year up to date using this code snippet.
Compatible Browsers:
Chrome BrowserFirefox BrowserInternet Explorer BrowserOpera BrowserSafari Browser
<html> <head> <title>Auto Update Copyright Year</title> </head> <body> [YOUR PAGE CONTENT GOES HERE] Place this script where you want it to appear on your web page. Change year and company name to your needs. <script type="text/javascript"> /* Begin Auto Update Copyright Year == This Script Free To Use Providing This Notice Remains == == This Script Has Been Found In The https://snapbuilder.com Free Public Codes Library == == NOTICE: Though This Material May Have Been In A Public Depository, Certain Author Copyright Restrictions May Apply == */ snapcopyright=new Date(); update=snapcopyright.getFullYear(); document.write("Copyright 2010-"+ update + " (your company name) All rights reserved."); </script> </body> </html>