How to make a special SPAN in text?

GIME
11 Posts
GIME posted this 05 January 2023
Ask a Question

Hi,

In my question there is the footer...
And there is the copyright... with years.

For example:

<p>All rights reserved (C) John Doe, 2017-2021.</p>

So... There can be a JavaScript for the second year to always be the actual year automatically.

The example footer text in a "notepad edited" tml file would be like this:

<p>All rights reserved (C) John Doe, 2017-<span id="_CopyRight_ThisYear">2021</span></p>
<script>
 var d = new Date();
 var n = d.getFullYear();
 document.getElementById("_CopyRight_ThisYear").innerHTML = n;
</script>

So...
How to make this SPAN, and how to add the script to it in NicePage?

Thanks,
Gime
2023.jan.05.th. 01.45 CET

Hi, In my question there is the footer... And there is the copyright... with years. For example: <p>All rights reserved (C) John Doe, 2017-2021.</p> So... There can be a JavaScript for the second year to always be the actual year automatically. The example footer text in a "notepad edited" tml file would be like this: <p>All rights reserved (C) John Doe, 2017-<span id="_CopyRight_ThisYear">2021</span></p> <script> var d = new Date(); var n = d.getFullYear(); document.getElementById("_CopyRight_ThisYear").innerHTML = n; </script> So... How to make this SPAN, and how to add the script to it in NicePage? Thanks, Gime 2023.jan.05.th. 01.45 CET
Vote to pay developers attention to this features or issue.
2 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 09 January 2023

Hi,

You can add all this code using the HTML control in the footer.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, You can add all this code using the HTML control in the footer. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
GIME
11 Posts
GIME posted this 09 January 2023

Thanks, it really works. :)

Sincerely,
Gime
2023.JAN.09.MO. 22.00 CET

Thanks, it really works. :) Sincerely, Gime 2023.JAN.09.MO. 22.00 CET

Last edited 09 January 2023 by GIME

You must log in or register to leave comments