code:
$(".article-image").each(function(){
var imgW = $(this).children("img").naturalWidth;
console.log(imgW);
})
$(this).children("img”).length
is 1, however imgW is undefined.
I've also tried:
$(this).children("img").scrollWidth;
And this was 0:
$(this).children("img").width();