LCH,
как-то так.
var imgWidth, imgHeight;
theImg = new Image();
theImg.src = link;
$(theImg).on('load', function() {
imgWidth = this.width;
imgHeight = this.height;
$('body').append($(this));
})
Но помни, что это не рекомендуется, т.к. может привести к некоторым ошибкам.