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

127
Views
Async function not waiting for other async to resolve

I admit that I still do not fully fathom async/promises as you can probably gather from my code but how am I supposed to get my function to wait for checkImageRatio in this circumstance.

async function checkImageRatio(id){
    let myPromise = new Promise(function(resolve) {
        let test = false;
        $(`#image-${id}`).find('img').each(async function(){
            let img = new Image();

            img.src = this.src;
            await img.decode();

            console.log((img.width/img.height));

            if(Math.abs(1 - img.width/img.height) > 0.02){
                $(`#image-${id}-main-image`).css('border', '1px red solid');
                $(`#${id}-warning`).effect('shake', {distance: 8, times: 2}, 200);
                test = true;
            }
        });
        resolve(test); 
    })
}

async function saveProduct(id){
  var imageTest = await checkImageRatio(id).then(result=>{return result});
  console.log(imageTest);
  console.log("here");
}

Why is image test not resolving here??

about 4 years ago · Juan Pablo Isaza
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!