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

169
Views
check if file has been changed with js

i have some code that has two iframes but connected to the same file but one has a auto refresher to get the newest change and i want my 'if' statement to execute when they are not the same but its not working, the if statement is not executing although one has more text than the other (changed) my code below, its simple.

 var iframeContent = getElementById('frame1');
    
setTimeout(function () {

    var iframeContent1 = getElementById("frame");


  
        if(iframeContent1 !== iframeContent) {
        
      
        window.location.href= './';
        }
}, 3000);
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

use setInterval function instead of setTimeout function to check file content every 3 second like below given example.

var iframeContent = getElementById('frame1');

setInterval(function () {

    var iframeContent1 = getElementById("frame");

    if (iframeContent1 !== iframeContent) {

        window.location.href= './';

    }

}, 3000);
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!