Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

145
Views
Advice needed: Is it possible to change file path at certain time of day to display a different content?

I do have a question. Would it be possible to change a GIF file path (GIF is hosted on a CDN) at certain times of the day so that I can replace the first GIF with a different one?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Well, simple just use JS Date object. Gets the client local date.

<img id="img1" src="" />

<script>
var date = new Date();
var hour = date.getHours();

if(hour >=0 && hour < 12){
    //current hour is between 00 to 11:59pm
    document.getElementbyId("img1").src = "";    
}else{
//current hour is between 12pm to 23:59pm
    document.getElementbyId("img1").src = "";
}
</script>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!