Skip to content

Instantly share code, notes, and snippets.

@chancesmith
Created September 6, 2016 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chancesmith/bd4029d8707a23110554e83c12111e03 to your computer and use it in GitHub Desktop.
Save chancesmith/bd4029d8707a23110554e83c12111e03 to your computer and use it in GitHub Desktop.
Write current year in footer with Javascript
<p class="copyright">Copyright &copy 2012 - <script type="text/javascript">var currentTime = new Date();var year = currentTime.getFullYear();document.write(year);</script> Your Company Name, Inc. / All rights reserved.</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment