dynamic current year with JavaScript


/ Published in: JavaScript
Save to your folder(s)

Often on a page footer, we want a copyright date range starting with the year the website was launched and ending the current year. Doing this dynamically means no need to update on 1/1 every year. The js snippet below uses the server date to accomplish this.


Copy this code and paste it in your HTML
  1. © 2008-
  2. <script>var tD = new Date();var datestr = tD.getFullYear();document.write(datestr);</script>
  3. Name of Company

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.