I have a page filled with thumbnails, resized with css to 150x150
, and when I click on a thumbnail, the page dims, and The image is being shown in it\'s true sizes.
@Dinesh's answer to just use the naturalHeight
and naturalWidth
property is great and probably should be the accepted answer.
Just wanted to add two things here that could save people hours since I see many SO posts around this issue and have myself spent quite sometime on it.
naturalHeight
may return 0
or undefined
if called before the image is loaded. Just setting src
attribute may not mean that the image is loaded immediately. I have seen that it is best to fetch it in onload
.
$('selector')[0].onload = function() {
alert(this.naturalHeight);
alert(this.naturalWidth);
}
If not using this
, just $('selector').naturalHeight
may not work. You may need to access the associated DOM element i.e $('selector')[0].naturalHeight
or $('selector').get(0).naturalHeight
since we are using native Javascript's attribute naturalHeight
. See this SO post for more details.