Created
March 26, 2012 21:40
-
-
Save johan/2209957 to your computer and use it in GitHub Desktop.
jQuery.naturalWidth / jQuery.naturalHeight plugin for (already-loaded) images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery.naturalWidth / jQuery.naturalHeight plugin for (already-loaded) images | |
// Triple-licensed: Public Domain, MIT and WTFPL license - share and enjoy! | |
(function($) { | |
function img(url) { | |
var i = new Image; | |
i.src = url; | |
return i; | |
} | |
if ('naturalWidth' in (new Image)) { | |
$.fn.naturalWidth = function() { return this[0].naturalWidth; }; | |
$.fn.naturalHeight = function() { return this[0].naturalHeight; }; | |
return; | |
} | |
$.fn.naturalWidth = function() { return img(this.src).width; }; | |
$.fn.naturalHeight = function() { return img(this.src).height; }; | |
})(jQuery); |
Many thanks !!!
Hi!
I made a small change in order to make this work as intended in IE8 as well.
See --> https://gist.github.com/kihlstrom/8316718/revisions
Cheers! :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
IE (<9) doesn't have width/height of image until load event finishes (img(this.src).complete===true).
did you try this in IE7-8?