Skip to content

Instantly share code, notes, and snippets.

@marwinious
Created October 22, 2013 16:45
Show Gist options
  • Select an option

  • Save marwinious/7103990 to your computer and use it in GitHub Desktop.

Select an option

Save marwinious/7103990 to your computer and use it in GitHub Desktop.
jQuery: Get image dimensions before loading. From http://stackoverflow.com/questions/6124409/image-size-before-is-in-dom
var imgLoad = $("<img />");
imgLoad.attr("src", ImageGallery.ImagesList[index] + "?" + new Date().getTime());
imgLoad.unbind("load");
imgLoad.bind("load", function () {
// Get image sizes
alert(this.width);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment