282
Companies updating their websites
(sopuli.xyz)
Post funny things about programming here! (Or just rant about your favourite programming language.)
document.querySelector('span#copyright_year').innerText = new Date().getFullYear()
No need to specify the tag name in the selector if you’re going to use an ID anyway.
Right - it should have been:
document.querySelectorAll('span#copyright_year').forEach((el) => { el.innerText = new Date().getFullYear() })
so that we update all spans with that ID!
So true and yet so hurtful.
<span>© <?php echo date("Y"); echo $companyName ?></span>