You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks! I tried with JS and it works like this work:
<section id="content"></section>
<script>
var el = document.getElementById('content');
var content;
if (new Date().getDay() == 5 ) {
'<section> Its Friday </section>'
}
else {
'<section> Its NOT Friday </section>'
}
el.insertAdjacentHTML('afterbegin', content);
</script>
Throwing this out there, but is it possible to have a slide appear at a certain day of the week?
Example, on every Friday, a specific slide is shown.
The text was updated successfully, but these errors were encountered: