I am trying to obtain an element width using the following code just before the </body>

<script type="text/javascript" charset="utf-8">
    $(document).ready(function(){
        var diff = $('div.canvas img.photo').get(1).width;
        console.log(diff);
    });
</script> 

but it logs undefined. However, if I run $('div.canvas img.photo').get(1).width directly in the Chrome/Firebug console, it returns the correct width. The image is not being loaded with Javascript, so should be in place when the document ready fires. What am I doing wrong?

link|improve this question

76% accept rate
Add console.log(diff); between the two lines and you´ll see what´s wrong. – Stefan Jan 31 at 10:31
@Mild Fuzz: console.log(diff.width); // looks typo – dev Jan 31 at 10:31
Ooops, edited now. – Mild Fuzz Jan 31 at 10:39
Why do you use $('div.canvas img.photo').get(1).width and not $('div.canvas img.photo').eq(1).width() ? – yunzen Jan 31 at 10:45
feedback

4 Answers

up vote 5 down vote accepted

No, it shouldn't. document.ready fires when all HTML has been loaded, but not the images. If you want to wait until all images are loaded, use window.load.

Example:

$(window).load(function(){
    var diff = $('div.canvas img.photo').get(1).width;
    console.log(diff);
});

Also, as some people have pointed out, you were attempting to get the property ".width" twice.

If at all possible, set a width on the imagetags in CSS. That way, you can safely use document.ready for your code. Using window.load will naturally delay the execution of your script, could be a second, could be ten, depending on the speed of the clients connection, and the amount of content on your page. This could cause unwanted jumps and jitters if you're performing any styling.

link|improve this answer
feedback

img isn't being loaded on DOM ready. docs:

While JavaScript provides the load event for executing code when a page is rendered, this event does not get triggered until all assets such as images have been completely received. In most cases, the script can be run as soon as the DOM hierarchy has been fully constructed. The handler passed to .ready() is guaranteed to be executed after the DOM is ready, so this is usually the best place to attach all other event handlers and run other jQuery code. When using scripts that rely on the value of CSS style properties, it's important to reference external stylesheets or embed style elements before referencing the scripts.

change to this:

$(window).load(function(){
            var diff = $('div.canvas img.photo').get(1).width;
            console.log(diff.width);
        });
link|improve this answer
feedback

Image's width would only be available when its loaded completely. jQuery supports onload event on every images too.

You can use,

$('div.canvas img.photo').load(function(){
  // here the image (or all images which match selector) has been loaded.
}
link|improve this answer
There are "caveats" when attach the load to the images. docs – gdoron Jan 31 at 15:59
@gdoron Thanks for info and the link. It really helped. I always used load in img tags in past. I'll not to do it again. – Jashwant Feb 1 at 10:17
Right, just attach it to the document like in my answer. – gdoron Feb 1 at 10:29
feedback

The problem is that your image is not loaded yet when you try to get its dimentions. To make it work wrap your code into $(window).load. Or another option. If you know the sizes of the image you can provide width and height attributes, then it's going to work even inside DOMContentLoaded. Sometimes it's preferable because onload event takes longer to fire then 'DOMContentLoaded'. Otherwise you would need to use $(window).load, see @Andreas Carlbom answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.