Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

image load event


onImagesLoad

'onImagesLoad' is a simple plugin that will callback a function when:

  • - All images within each item of the $(selector) have loaded (the 'itemCallback')
  • - All images within the entire $(selector) have loaded (the 'selectorCallback')

Visit the official website for examples and documentation.

OPTIONS
itemCallback

  • - Data Type: function (default=null)
  • - This function is invoked when all images within a single item of $(yourSelector) have loaded.
  • - Each object selected in the $(selector) gets its own callback.
    • - For example, if the selector is $('.imageHolder') and the page has multiple items with class 'imageHolder', each imageHolder item will fire its own callback independently.