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?
console.log(diff);between the two lines and you´ll see what´s wrong. – Stefan Jan 31 at 10:31console.log(diff.width);// looks typo – dev Jan 31 at 10:31$('div.canvas img.photo').get(1).widthand not$('div.canvas img.photo').eq(1).width()? – yunzen Jan 31 at 10:45