Created
October 30, 2013 21:48
-
-
Save namklabs/7240935 to your computer and use it in GitHub Desktop.
Puts current year into a <span> in the footer of your website
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* put the current year in the footer of your website */ | |
$("#footer .year").text(" " + ( new Date() ).getFullYear() ); | |
/* ^ this space will come after the copyright symbol before the year. Notice how the HTML is laid out in mytemplate.html. */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<footer id="footer">©<span class="year"></span> My Company Name. All rights reserved.</footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment