/ Published in: JavaScript
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.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
© 2008- <script>var tD = new Date();var datestr = tD.getFullYear();document.write(datestr);</script> Name of Company