Meme transcription [Kid drowning in pool]

In the background a person plays with a kid in the pool. The person is labeled “Companies updating their website”. The kid is labeled “The company logo”.

In the foreground a kid seems to be drowning. It is labeled “Useful information”.

In a second panel a skeleton sits at the bottom of the pool. It is labeled “The copyright year”

  • konalt
    link
    191 month ago

    document.querySelector('span#copyright_year').innerText = new Date().getFullYear()

    • @[email protected]OP
      link
      fedilink
      English
      9
      edit-2
      1 month ago

      No need to specify the tag name in the selector if you’re going to use an ID anyway.

      • @FooBarrington
        link
        41 month ago

        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!

    • @stetech
      link
      11 month ago

      <span>&copy; <?php echo date("Y"); echo $companyName ?></span>