For every site we need to update the current year in the copyright notice present in the footer.
Here is the simple jQuery script to dynamically update the current year. Place the following code instead of the year in your site.
Here is the simple jQuery script to dynamically update the current year. Place the following code instead of the year in your site.
<script type="text/javascript">
var dteNow = new Date();
var intYear = dteNow.getFullYear();
document.write(intYear);
</script>