Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordanmerrick/5670906 to your computer and use it in GitHub Desktop.
Save jordanmerrick/5670906 to your computer and use it in GitHub Desktop.
Load an alternative/additional CSS file depending on the visitor's current time.
<script>
var currentTime = new Date().getHours();
if (22 <= currentTime&&currentTime < 24 || 0 <= currentTime&&currentTime < 6) {
document.write("<link rel='stylesheet' href='{{ SITEURL }}/theme/css/night.css' type='text/css'>");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment