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

125
Views
Smooth Zoom Pan - jQuery Image Viewer on a dynamically loaded picture

I'm trying to apply Smooth Zoom Pan on a dynamically loaded picture like this:

  <div id="imgDiv" class="img-fluid"></div>
  function createImg() {
        var div = $("#imgDiv");
        div.empty();
        var newImg = new Image();
        newImg.id = 'myImg';
        newImg.useMap = '#buildingMap'
        newImg.setAttribute('class', 'img-fluid');
        newImg.attr("src", 'data:image/jpg;base64, ' + imgContent);
        div.append(newImg);
   }

imgContent is Base64 content of the image that I'm get it from database with AJAX call.

After the image was created:

setTimeout(function () {
    $('#myImg').smoothZoom({
        width: 500,
        height: 500
    });
   }, 500);

As a result, I'm getting only a white empty div with borders

Any suggestions how to fix this?

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!