Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Saludo festividad -->
- <script type="text/javascript">
- function saludoFestividad() {
- var todayDate = new Date().toISOString().slice(0, 10);
- //console.log(todayDate);
- var fechaHoy = todayDate;
- var navidad = "2021-12-25";
- var anionuevo = "2022-01-01";
- if (fechaHoy == navidad) {
- texto = "Feliz Navidad !";
- }
- else if (fechaHoy == anionuevo) {
- texto = "Feliz Año Nuevo !";
- }
- else {
- texto = "nubecolectiva.com";
- }
- //document.images["tiempo"].src = imagen;
- document.getElementById('txtsaludof').innerHTML = texto;
- }
- </script>
- <!-- En el HTML cargamos el mensaje en el div con id 'txtsaludof' -->
- <body onload="saludoFestividad();">
- <div id="txtsaludof" align="center"></div>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement