10
Views
1
Comments
[Simple Reports Reactive] Getting $(...).imagesLoaded is not a function in Simple Report Reactive
Question
simple-reports-reactive
Reactive icon
Forge asset by Rafael Fantato
Application Type
Reactive

I m getting the $(...).imagesLoaded is not a function error when i m opening my document and it is happening for all the documents. Can someone help me how can I fix it.



Screenshot 2026-03-03 at 10.05.00 AM.png
Screenshot 2026-03-02 at 2.46.29 PM.png
2026-03-20 01-28-51
Saugat Biswas

Hi @nikita satpute ,

Most common cause for this issue could be, jQuery is loaded, but imagesLoaded is not

  • imagesLoaded is not part of jQuery core 
  • It must be loaded explicitly 
  • Some OSUI / theme upgrades remove older global scripts

Another issue could be script loading order:

If imagesLoaded is loaded: 

  • before jQuery 
  • or after Simple Reports initializes 

it won’t be available at runtime.

Solution: 

Explicitly include imagesLoaded (recommended). Add the imagesLoaded plugin to your app after jQuery. Add this to your Theme → CSS/JS Includes or a global layout:

<script src="https://unpkg.com/imagesloaded@5/imagesloaded.pkgd.min.js"></script> 

 This immediately fixes the error in most cases.


Hope this helps,

Cheers,

Saugat

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.